如何在 node.js 中卸载具有开发依赖项的 npm 模块?

Posted

技术标签:

【中文标题】如何在 node.js 中卸载具有开发依赖项的 npm 模块?【英文标题】:How to uninstall npm modules with dev dependencies in node.js? 【发布时间】:2019-10-12 09:32:09 【问题描述】:

如何在 node.js 中卸载带有 dev 依赖的 npm 模块?

【问题讨论】:

How to uninstall npm modules in node js?的可能重复 除非他正在寻找npm prune --production。也许将此作为​​第五点添加到您的列表中? @Hasara,如果它解决了你的问题,你能接受我的回答吗? 【参考方案1】:

使用命令:

1)npm uninstall <name of the module>

您也可以使用:

1) npm uninstall <name of the module>: 从 node_modules 中删除模块,但不是 package.json

2) npm uninstall <name of the module> --save: 也将其从 package.json 中的依赖项中删除

3) npm uninstall <name of the module> --save-dev: 也将其从 package.json 中的 devDependencies 中删除

4) npm -g uninstall <name of the module> --save: 全局删除

【讨论】:

我是这个 npm 的新手,这些命令帮助我解决了我的问题。干得好!

以上是关于如何在 node.js 中卸载具有开发依赖项的 npm 模块?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 node.js 在 html 中包含静态文件

如何在具有 reactstrap 依赖项的 reactjs 应用程序中自定义 bootstrap 4?

在 Jest 中,如何模拟具有依赖项的 TypeScript 类?

在 Gradle 中,如何生成具有解析为实际使用版本的动态依赖项的 POM 文件?

如何将依赖于 Styled Components 的 React 组件库提供给另一个也具有 Styled Comopnents 依赖项的库?

npm命令用于卸载或修剪Node.js中未使用的包