1.node.js

node -v

2.安装淘宝镜像

npm install -g cnpm --registry=https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org

React安装开发环境_创建项目

3.cnpm安装

npm install -g create-react-app

创建项目

create-react-app hello-react

进入项目

cd hello-react

启动项目

npm start