React
程序员文章站
2024-03-25 14:30:52
...
React资源
菜鸟教程 :http://www.runoob.com/react/react-install.html
阮一锋 react:http://www.ruanyifeng.com/blog/2015/03/react.html
react官网【中文】:https://react.docschina.org/docs/hello-world.html
react官网【英文】:
通过cnpm使用react
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ npm config set registry https://registry.npm.taobao.org
这样就可以使用 cnpm 命令来安装模块了:
$ cnpm install [name]
快速构建 React 开发环境
使用 create-react-app 快速构建 React 开发环境
cnpm创建react项目
$ cnpm install -g create-react-app //全局安装create-react-app
$ create-react-app my-app //创建my-app项目
$ cd my-app/ //进入my-app项目
$ npm start //启动项目
启动项目之后,默认端口为:3000,打开 http://localhost:3000/
上一篇: React