核心提示:确定你的电脑里面有node下面来安装react:在国内用cnpm比npm速度更快,所以我们先安装cnpm$ npm install -g cnpm --registry=https://registr...
确定你的电脑里面有node
下面来安装react:
在国内用cnpm比npm速度更快,所以我们先安装cnpm
$ npm install -g cnpm --registry=https://registry.npm.taobao.org $ npm config set registry https://registry.npm.taobao.org
进入项目创建文件夹:
G:\>cd G:\ProjectFile\react
使用 create-react-app 快速构建 React 开发环境:
create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。
create-react-app 自动创建的项目是基于 Webpack + ES6 。
执行以下命令创建项目:
$ cnpm install -g create-react-app $ create-react-app my-app $ cd my-app/ $ npm start