The command is simply npm uninstall <name>
(该命令只是npm uninstall <name>
)
The nodejs documents https://npmjs.org/doc/ have all the commands that you need to know with npm.
(nodejs文档https://npmjs.org/doc/具有npm需要了解的所有命令。)
A local install will be in the node_modules/
directory of your application.
(本地安装将在应用程序的node_modules/
目录中。)
This won't affect the application if a module remains there with no references to it. (如果模块保留在那里而没有引用,则这不会影响应用程序。)
If you're removing a global package however, any applications referencing it will crash.
(但是,如果要删除全局软件包,则引用该全局软件包的所有应用程序都将崩溃。)
Here are different options:
(这是不同的选项:)
npm uninstall <name>
removes the module from node_modules
, but not package.json
(npm uninstall <name>
将从node_modules
删除模块,但不会从package.json
删除)
npm uninstall <name> --save
also removes it from dependencies
in package.json
(npm uninstall <name> --save
还将其从package.json
dependencies
中删除)
npm uninstall <name> --save-dev
also removes it from devDependencies
in package.json
(npm uninstall <name> --save-dev
还将其从package.json
devDependencies
中删除)
npm -g uninstall <name> --save
also removes it globally
(npm -g uninstall <name> --save
也将其全局删除)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…