Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我相信在过去我发现了一个传递给npm它的选项来输出它用于-g(全局模块)的路径。有谁知道这样的选择?或者使用任何其他获取全局路径前缀npm的方法?
npm
-g
我知道全局模块在我的计算机上的/usr/local/share/npm/bin位置$PATH(但是是否有一些快速的方法可以告诉我们npm是如何构建的,以及它用于全局模块的路径?
/usr/local/share/npm/bin
$PATH
npm config get prefix将返回路径。
npm config get prefix
怎么样npm bin?
npm bin
它可以与export PATH="$(npm bin):$PATH". 它将找到 npm 的bin全局目录(或者如果存在:本地)。
export PATH="$(npm bin):$PATH"