我看到了一些教程,其中的命令是:
npm install --save
--save选项是什么意思?
我看到了一些教程,其中的命令是:
npm install --save
--save选项是什么意思?
当前回答
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 i(程序包名称)--保存
简单地说,使用上面的命令,我们不需要在package.json文件中写入包名,它将自动添加其名称和依赖项,以及您在开始生产或设置其他时间所需的版本。
npm帮助安装
上面的命令将有助于查找更多选项并更正图片中的def.shown:
更新npm 5:
从npm 5.0.0开始,默认情况下已安装的模块作为依赖项添加,因此不再需要--save选项。其他保存选项仍然存在,并在npm安装文档中列出。
原答覆:
在版本5之前,NPM默认只在node_modules下安装了一个包。当您尝试为应用程序/模块安装依赖项时,需要首先安装它们,然后将它们(以及相应的版本号)添加到package.json的依赖项部分。
--save选项指示NPM自动将包包含在package.json的dependencies部分中,从而节省了额外的步骤。
此外,还有两个补充选项--save dev和--save optional,它们分别将包保存在devDependencies和optionalDependencie下。这在安装仅用于开发的软件包时非常有用,例如grut或测试库。
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的更新:
从npm 5.0.0开始,默认情况下已安装的模块作为依赖项添加,因此不再需要--save选项。其他保存选项仍然存在,并在npm安装文档中列出。
原答覆:
如果你没有package.json文件,它不会做任何事情。首先运行npm init创建一个。然后调用npm install--save或npm install--save dev或npm install--save optional将更新package.json以列出依赖项。
从npm 5开始,使用--save prod(或-P)比--save更有利,但做同样的事情,如npm install中所述。到目前为止,如果提供,--save仍然有效。