在尝试删除npm install创建的node_modules目录时:
源文件名大于该文件支持的文件名 系统。尝试移动到路径名称较短的位置,或者尝试 在尝试此操作之前,将名称重命名为较短的名称
我也尝试了shift + delete,仍然有同样的问题。
在尝试删除npm install创建的node_modules目录时:
源文件名大于该文件支持的文件名 系统。尝试移动到路径名称较短的位置,或者尝试 在尝试此操作之前,将名称重命名为较短的名称
我也尝试了shift + delete,仍然有同样的问题。
当前回答
我用giitbash删除文件夹!
rm -r node_modules
我花了一些时间删除所有内容,但对我来说很有效!
其他回答
我使用的一个解决方案是:
(我更倾向于在使用CI环境时避免安装新的扩展(rimraf)。)
A) Rename packages.json to something else. B) Specially on CI - after npm install, I usually remove the file instead of renaming it, but if you need it, you don't have to do this. That's your choice. run npm init - this will create an empty packages.json file (no dependencies) run npm prune - this will match node_modules with the dependencies section of packages.json - which is now empty as the result of step #2. If you have chosen #1.A. step, delete the newly created packages.json, and rename original packages.json back to its original name.
NPM install -g remove-node-modules CD到根目录并删除节点模块 或删除节点模块路径/到/文件夹
来源:
https://github.com/j-quelly/node-cleanup
使用CMD命令
npx rimraf node_modules
对我有用的是:
关闭节点管理器控制台 关闭您所在的Atom (visual studio代码)开发环境。 然后删除node_modules NPM安装rimraf rimraf node_modules
我想之前没有提到过。但是删除不需要的node_modules的最好方法是安装一个名为npmkill的实用程序。
安装:
从您的终端:
npm i -g npkill
要使用它:
从您的终端:
npkill
或者,你可以直接使用它,而不需要安装:
npx npkill
然后你会看到一个项目列表,点击空格键可以删除它们的node_modules。