# npm bin
显示 npm 的 bin 文件夹
# 概要
npm bin
注意
这个命令不支持工作空间。
# 描述
打印 npm 安装的可执行文件的文件夹。
# 配置
# global
- Default: false
- Type: Boolean
以 “global” 模式运行,会将包安装到 prefix
文件夹而不是当前工作目录中。有关行为差异的更多信息,请参阅 folders。
- 软件包被安装到
{prefix}/lib/node_modules
文件夹中,而不是当前工作目录中。 - bin 文件链接到
{prefix}/bin
- 操作说明链接到
{prefix}/share/man
# global-style
- Default: false
- Type: Boolean
使 npm 以与全局 node_modules
文件夹相同的布局将包安装到本地 node_modules
文件夹。您的直接依赖项将在 node_modules
中显示,它们所依赖的一切将在其 node_modules
文件夹中扁平化。这显然会消除一些重复数据删除。如果与 legacy-bundling
一起使用,legacy-bundling
优先。