gpt4 book ai didi

npm - "npm uninstall"与 "npm uninstall --save"

转载 作者:行者123 更新时间:2023-12-04 15:51:26 33 4
gpt4 key购买 nike

“npm uninstall packageName”删除包并更新 package.json 文件。

但是来自 npm 文档 -

To remove a package from the dependencies in package.json, use the --save flag. Include the scope if the package is scoped.

有人可以阐明 --save 标志的实际作用吗?

最佳答案

--save 标志表示将从 package.json 中删除模块记录。默认情况下,如果您调用不带参数的 uninstall 命令,npm 将从 package.json 中删除模块记录以及从 node_modules 中删除模块文件夹。在以前版本的 npm 中,您应该明确指定标志。

npmjs 文档:

npm uninstall takes 3 exclusive, optional flags which save or update the package version in your main package.json:

-S, --save: Package will be removed from your dependencies.

-D, --save-dev: Package will be removed from your devDependencies.

-O, --save-optional: Package will be removed from your optionalDependencies.

--no-save: Package will not be removed from your package.json file.

关于npm - "npm uninstall"与 "npm uninstall --save",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53664046/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com