gpt4 book ai didi

javascript - npx 是否寻找全局安装的包?

转载 作者:行者123 更新时间:2023-11-30 14:33:30 26 4
gpt4 key购买 nike

我正在使用 Node.js 10.1.0 和 npm 6.0.0。

我已经用 npm install -g example-package 安装了一个包,

npx 会寻找它吗? npx -p example-package 怎么样,它只在 npm 注册表上查找吗?

最佳答案

Node.js v10 (npm@6 可能更晚);

npx在本地查看之后,将查看全局二进制文件。

但是我们可以使用-p防止全局查看的选项,例如:

npx -p name_of_module

Note npx is an npm package runner that executes a <command> (e.g. npm package binaries) by FIRST looking in local node_modules/.bin directory.

So even if we remove it from package.json, as long as binary exists in node_modules/.bin, npx will continue using local.

关于javascript - npx 是否寻找全局安装的包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50804356/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com