目录
选择命令行版本:
目录
概要
¥Synopsis
npm query <selector>
描述
¥Description
npm query
命令允许使用 css 选择器来检索依赖对象数组。
¥The npm query
command allows for usage of css selectors in order to retrieve an array of dependency objects.
管道 npm 查询到其他命令
¥Piping npm query to other commands
# find all dependencies with postinstall scripts & uninstall themnpm query ":attr(scripts, [postinstall])" | jq 'map(.name)|join("\n")' -r | xargs -I {} npm uninstall {}# find all git dependencies & explain who requires themnpm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}
扩展用例和查询
¥Extended Use Cases & Queries
// all deps*// all direct deps:root > *// direct production deps:root > .prod// direct development deps:root > .dev// any peer dep of a direct deps:root > * > .peer// any workspace dep.workspace// all workspaces that depend on another workspace.workspace > .workspace// all workspaces that have peer deps.workspace:has(.peer)// any dep named "lodash"// equivalent to [name="lodash"]#lodash// any deps named "lodash" & within semver range ^"1.2.3"#lodash@^1.2.3// equivalent to...[name="lodash"]:semver(^1.2.3)// get the hoisted node for a given semver range#lodash@^1.2.3:not(:deduped)// querying deps with a specific version#lodash@2.1.5// equivalent to...[name="lodash"][version="2.1.5"]// has any deps:has(*)// deps with no other deps (ie. "leaf" nodes):empty// manually querying git dependencies[repository^=github:],[repository^=git:],[repository^=https://github.com],[repository^=http://github.com],[repository^=https://github.com],[repository^=+git:...]// querying for all git dependencies:type(git)// get production dependencies that aren't also dev deps.prod:not(.dev)// get dependencies with specific licenses[license=MIT], [license=ISC]// find all packages that have @ruyadorno as a contributor:attr(contributors, [email=ruyadorno@github.com])
示例响应输出
¥Example Response Output
-
返回一个依赖对象数组,其中可以包含同一包的多个副本,这些副本可能已链接或已删除,也可能未链接或数据去重
¥an array of dependency objects is returned which can contain multiple copies of the same package which may or may not have been linked or deduped
[{"name": "","version": "","description": "","homepage": "","bugs": {},"author": {},"license": {},"funding": {},"files": [],"main": "","browser": "","bin": {},"man": [],"directories": {},"repository": {},"scripts": {},"config": {},"dependencies": {},"devDependencies": {},"optionalDependencies": {},"bundledDependencies": {},"peerDependencies": {},"peerDependenciesMeta": {},"engines": {},"os": [],"cpu": [],"workspaces": {},"keywords": [],...},...
配置
¥Configuration
global
-
默认值:false
¥Default: false
-
类型:布尔值
¥Type: Boolean
在 "global" 模式下运行,以便将包安装到 prefix
文件夹而不是当前工作目录。有关行为差异的更多信息,请参见 文件夹。
¥Operates in "global" mode, so that packages are installed into the prefix
folder instead of the current working directory. See folders for more on the differences in behavior.
-
包安装到
{prefix}/lib/node_modules
文件夹,而不是当前工作目录。¥packages are installed into the
{prefix}/lib/node_modules
folder, instead of the current working directory. -
bin 文件链接到
{prefix}/bin
¥bin files are linked to
{prefix}/bin
-
手册页链接到
{prefix}/share/man
¥man pages are linked to
{prefix}/share/man
workspace
-
默认值:
¥Default:
-
类型:字符串(可以设置多次)
¥Type: String (can be set multiple times)
启用在当前项目的已配置工作区的上下文中运行命令,同时通过仅运行此配置选项定义的工作区进行过滤。
¥Enable running a command in the context of the configured workspaces of the current project while filtering by running only the workspaces defined by this configuration option.
workspace
配置的有效值为:
¥Valid values for the workspace
config are either:
-
工作区名称
¥Workspace names
-
工作区目录的路径
¥Path to a workspace directory
-
父工作区目录的路径(将导致选择该文件夹中的所有工作区)
¥Path to a parent workspace directory (will result in selecting all workspaces within that folder)
为 npm init
命令设置时,可以将其设置为尚不存在的工作区的文件夹,以创建文件夹并将其设置为项目中的全新工作区。
¥When set for the npm init
command, this may be set to the folder of a workspace which does not yet exist, to create the folder and set it up as a brand new workspace within the project.
此值不会导出到子进程的环境中。
¥This value is not exported to the environment for child processes.
workspaces
-
默认值:null
¥Default: null
-
类型:空值或布尔值
¥Type: null or Boolean
设置为 true 可在所有已配置工作区的上下文中运行该命令。
¥Set to true to run the command in the context of all configured workspaces.
显式将此设置为 false 将导致像 install
这样的命令完全忽略工作区。未明确设置时:
¥Explicitly setting this to false will cause commands like install
to ignore workspaces altogether. When not set explicitly:
-
在
node_modules
树上运行的命令(安装、更新等)会将工作区链接到node_modules
文件夹。* 执行其他操作(测试、执行、发布等)的命令将在根项目上运行,除非在workspace
配置中指定了一个或多个工作区。¥Commands that operate on the
node_modules
tree (install, update, etc.) will link workspaces into thenode_modules
folder. - Commands that do other things (test, exec, publish, etc.) will operate on the root project, unless one or more workspaces are specified in theworkspace
config.
此值不会导出到子进程的环境中。
¥This value is not exported to the environment for child processes.
include-workspace-root
-
默认值:false
¥Default: false
-
类型:布尔值
¥Type: Boolean
为命令启用工作区时包括工作区根。
¥Include the workspace root when workspaces are enabled for a command.
当为 false 时,通过 workspace
配置指定单个工作区,或通过 workspaces
标志指定所有工作区,将导致 npm 仅在指定的工作区上运行,而不是在根项目上运行。
¥When false, specifying individual workspaces via the workspace
config, or all workspaces via the workspaces
flag, will cause npm to operate only on the specified workspaces, and not on the root project.
此值不会导出到子进程的环境中。
¥This value is not exported to the environment for child processes.
也可以看看
¥See Also