我看到了一些教程,其中的命令是:

npm install --save

--save选项是什么意思?


当前回答

向package.json添加依赖项的更简单(更棒)方法是从命令行执行,根据您希望如何使用该依赖项,使用--save或--save-dev标记npm安装命令。

其他回答

npm i(程序包名称)--保存

简单地说,使用上面的命令,我们不需要在package.json文件中写入包名,它将自动添加其名称和依赖项,以及您在开始生产或设置其他时间所需的版本。

npm帮助安装

上面的命令将有助于查找更多选项并更正图片中的def.shown:

当您在npm命令中使用--save来安装包时,这意味着您的项目将在生产环境中安装这些依赖项,例如,如果您安装了一个库来管理日期。

npm install moment --save
npm i moment -S (same result)

(这适用于生产环境)

npm install moment --save--dev
npm i moment -D (same result)

(这是用于开发环境)

根据NPM文件:

因此,似乎通过运行npm install package_name,包依赖项应该自动添加到package.json中,对吗?

npm v6.x更新

现在,您可以使用npm i或npm i-S或npm i-P之一来安装模块并将其保存为依赖项。

npm i是npm install的别名

npm i等于npm install,这意味着默认的save模块是一个依赖项;npm i-S等于npm install--save(npm v5-)npm i-P等于npm install--save prod(npm v5+)

查看您的npm版本

npm -v

6.14.4

获取npm-cli帮助信息

npm -h

Usage: npm <command>

where <command> is one of:
    access, adduser, audit, bin, bugs, c, cache, ci, cit,
    clean-install, clean-install-test, completion, config,
    create, ddp, dedupe, deprecate, dist-tag, docs, doctor,
    edit, explore, fund, get, help, help-search, hook, i, init,
    install, install-ci-test, install-test, it, link, list, ln,
    login, logout, ls, org, outdated, owner, pack, ping, prefix,
    profile, prune, publish, rb, rebuild, repo, restart, root,
    run, run-script, s, se, search, set, shrinkwrap, star,
    stars, start, stop, t, team, test, token, tst, un,
    uninstall, unpublish, unstar, up, update, v, version, view,
    whoami

npm <command> -h  quick help on <command>
npm -l            display full usage info
npm help <term>   search for help on <term>
npm help npm      involved overview

Specify configs in the ini-formatted file:
    /Users/xgqfrms-mbp/.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config

npm@6.14.4 /Users/xgqfrms-mbp/.nvm/versions/node/v12.18.0/lib/node_modules/npm

获取npm安装帮助

npm帮助安装别名npm-h i

npm help install

# OR, alias
npm -h i

输出:

npm install (with no args, in package dir)
npm install [<@scope>/]<pkg>
npm install [<@scope>/]<pkg>@<tag>
npm install [<@scope>/]<pkg>@<version>
npm install [<@scope>/]<pkg>@<version range>
npm install <alias>@npm:<name>
npm install <folder>
npm install <tarball file>
npm install <tarball url>
npm install <git:// url>
npm install <github username>/<github project>

aliases: i, isntall, add
common options: [--save-prod|--save-dev|--save-optional] [--save-exact] [--no-save]
➜  ~

工具书类

npm安装

从npm 5开始,使用--save prod(或-P)比--save更有利,但做同样的事情,如npm install中所述。到目前为止,如果提供,--save仍然有效。