搭建React開發環境以前的準備工做
node
1.必需要安裝node.js (注意:安裝node.js穩定版本)react
2.安裝cnpm,用cnpm替代npm npm
npm install -g cnpm --registry=https://registry.npm.taobao.org
3.也能夠用yarn替代npmapp
cnpm install -g yarn 或者 npm install -g yarn
新建項目工具
1.安裝腳手架工具 (單文件組件項目生成工具)只須要安裝一次ui
npm install -g create-react-app / cnpm install -g create-react-app
2.建立項目 (能夠建立屢次)spa
找到項目要建立的目錄執行:code
create-react-app reactdemo
3.cd 到項目裏面:blog
cd reactdemo
4.運行項目開發
npm start yarn start運行項目
npm run build yarn build 生成項目