您现在的位置:首页 >> 前端 >> 内容

React安装教程

时间:2017/12/28 11:29:32 点击:

  核心提示:确定你的电脑里面有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

React安装教程

进入项目创建文件夹:

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

React安装教程

React安装教程

React安装教程

React安装教程

Tags:RE EA AC CT 
作者:网络 来源:黑猫中校的燃烧战场