📌  相关文章
📜  删除 node_modules - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:50:17.581000             🧑  作者: Mango

删除 node_modules - Shell/Bash

当你在使用你的代码项目时,主要的依赖文件位于 node_modules 文件夹内。然而,这个文件夹内的文件以及文件夹很容易变得十分庞大,因为每个依赖都会占用一些空间。当你需要清理你的项目并节省一些磁盘空间时,你就需要删除 node_modules 文件夹。

以下是一些在 Shell/Bash 下彻底删除 node_modules 文件夹的方法:

删除一个单独的项目中的 node_modules 文件夹

如果你只需要删除一个项目内的 node_modules 文件夹,可以在 Shell/Bash 中使用以下命令:

rm -rf /path/to/your/project/node_modules

这将彻底删除你的项目中的 node_modules 文件夹。

删除当前项目中的 node_modules 文件夹

如果你想删除你当前工作目录中的 node_modules 文件夹,你可以使用以下命令:

rm -rf ./node_modules

这将删除你当前工作目录中的 node_modules 文件夹。

删除全局 node_modules 文件夹

如果你需要彻底删除你的计算机上所有项目中的 node_modules 文件夹,你可以在 Shell/Bash 中使用以下命令:

sudo rm -rf /usr/local/lib/node_modules

请注意,你需要在命令前加上 sudo,因为你将删除全局文件夹。

此外,如果你不想删除某些依赖,你也可以将上面的命令修改为以下格式:

sudo npm uninstall -g <package-name>

这将卸载你不再需要的全局依赖。

总结

在 Shell/Bash 中彻底删除 node_modules 文件夹可以帮助你清理你的项目并释放磁盘空间。使用上面的方法可以帮助你彻底地删除 node_modules 文件夹。请记住,在删除文件夹时要谨慎,以免意外删除其他重要文件。