react + redux
http://www.runoob.com/nodejs/nodejs-install-setup.html (nodejs的安装使用)
http://www.runoob.com/nodejs/nodejs-npm.html (npm的使用)
http://www.ruanyifeng.com/blog/2015/03/react.html (React 入门实例教程)
http://www.ruanyifeng.com/blog/2016/05/react_router.html?utm_source=tool.lu (React Router 使用教程)
http://www.ruanyifeng.com/blog/2016/09/react-technology-stack.html (React 技术栈系列教程;上边2个都是这个页面上可以点开的内容)
https://github.com/facebook/flux (flux 原理生命周期)
http://redux.js.org/docs/introduction/Examples.html (redux 简单案例)
https://facebook.github.io/react/docs/state-and-lifecycle.html (react 文档)
上边3个是学习react相关文档及案例的地址
https://github.com/facebook/react-devtools (react 开发调试工具)
https://github.com/zalmoxisus/redux-devtools-extension (redux 开发调试工具)
上边2条是google和火狐调试工具
npm install -g nrm --registry=https://registry.npm.taobao.org #用淘宝镜像安装nrm,
nrm ls #查看能够使用的镜像源
nrm use taobao #命令使用淘宝的源
npm install #进入对应的项目运行该命令,会执行对应的package.json 的依赖包安装
npm run dev #运行安装的web-pack 的虚拟机, 类似 我们的tomcat环境运行,则就可以直接在地址栏进行调试了