欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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官网【英文】:

https://reactjs.org/

通过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

上一篇: React

下一篇: