yarn 和 npm --save-dev --save 的区别

问题:https://stackoverflow.com/questions/22891211/what-is-the-difference-between-save-and-save-dev

What is the difference between:

npm install [package_name]

and:

npm install [package_name] --save

and:

npm install [package_name] --save-dev

What does this mean? And what is really the effect of --save and -dev keywords?

  • --save-dev 用于为开发目的保存包。例如:单元测试、压缩…。devDependencies是开发时的依赖。即devDependencies 下列出的模块,是我们开发时用的,比如 我们安装 js的压缩包gulp-uglify 时,我们采用的是 “npm install –save-dev gulp-uglify ”命令安装,因为我们在发布后用不到它,而只是在我们开发才用到它。
  • --save用于保存应用程序运行所需的包。dependencies是运行时依赖,dependencies 下的模块,则是我们发布后还需要依赖的模块,譬如像jQuery库或者Angular框架类似的,我们在开发完后后肯定还要依赖它们,否则就运行不了。

【注意】:正常使用npm install时,会下载dependencies和devDependencies中的模块,当使用npm install –production或者注明NODE_ENV变量值为production时,只会下载dependencies中的模块。

你可能感兴趣的:(Git,工具,yarn,npm)