node_modules 全局位置在哪里

node_modules 全局位置在哪里

在 Ubuntu 20.04 上,node_modules 全局安装在哪里?
它不在 /usr/local/lib 中。我想删除全局安装的 webpack。但我似乎找不到它。

答案1

我见过的另外两个常见模块位置是:

/opt/local/lib/node_modules
/usr/local/include/node_modules

希望其中一个包含您要删除的 Web 包。如果没有,请搜索文件系统:

sudo find / -iname "node_modules" -type d

这将列出所有名为 的目录node_modules。使用-iname使搜索不区分大小写。

答案2

在 Dockerfile 中我像这样安装

运行 apt-get update -y
&& apt-get upgrade -y
&& apt-get install -y
&& curl -sLhttps://deb.nodesource.com/setup_16.x| bash -
&& apt-get install -y nodejs

...它将它们放置在

/usr/lib/node_modules

/usr/lib/node_modules/npm/node_modules

相关内容