谢谢
npm install - -save
npm install - -save - dev
npm install
不会写入依赖到package.json , 别人跑不起来
npm install -g xxx
全局安装到 profix , 不会写入依赖
npm install --save xxx
npm install xxx -S
生产环境 会写入依赖到package.json /dependencies
npm install --save-dev xxx
npm install xxx -D
开发环境 会写入依赖到package.json/devdependencies