一、创建项目 1、安装create-rect-app
$npm install -g create-react-app
2、 使用create-react-app创建react项目
$ create-react-app app01
3、启动
$ cd app01
$ npm run start
其它命令
> npm init
> npm install
遍历package.json文件中的所有依赖,依次进行安装
> npm install xxx@xxx
安装指定版本的模块
> npm install --save xxx
产品依赖
> npm install --save-dev xxx
环境依赖
> npm install -g xxx
全局安装
> npm uninstall xxx
> npm run xxx
运行指定命令,package.json script
npm start / npm run start