• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html><html><head>
2<meta charset="utf-8">
3<title>Dependency Selector Syntax &amp; Querying</title>
4<style>
5body {
6    background-color: #ffffff;
7    color: #24292e;
8
9    margin: 0;
10
11    line-height: 1.5;
12
13    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
14}
15#rainbar {
16    height: 10px;
17    background-image: linear-gradient(139deg, #fb8817, #ff4b01, #c12127, #e02aff);
18}
19
20a {
21    text-decoration: none;
22    color: #0366d6;
23}
24a:hover {
25    text-decoration: underline;
26}
27
28pre {
29    margin: 1em 0px;
30    padding: 1em;
31    border: solid 1px #e1e4e8;
32    border-radius: 6px;
33
34    display: block;
35    overflow: auto;
36
37    white-space: pre;
38
39    background-color: #f6f8fa;
40    color: #393a34;
41}
42code {
43    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
44    font-size: 85%;
45    padding: 0.2em 0.4em;
46    background-color: #f6f8fa;
47    color: #393a34;
48}
49pre > code {
50    padding: 0;
51    background-color: inherit;
52    color: inherit;
53}
54h1, h2, h3 {
55    font-weight: 600;
56}
57
58#logobar {
59    background-color: #333333;
60    margin: 0 auto;
61    padding: 1em 4em;
62}
63#logobar .logo {
64    float: left;
65}
66#logobar .title {
67    font-weight: 600;
68    color: #dddddd;
69    float: left;
70    margin: 5px 0 0 1em;
71}
72#logobar:after {
73    content: "";
74    display: block;
75    clear: both;
76}
77
78#content {
79    margin: 0 auto;
80    padding: 0 4em;
81}
82
83#table_of_contents > h2 {
84    font-size: 1.17em;
85}
86#table_of_contents ul:first-child {
87    border: solid 1px #e1e4e8;
88    border-radius: 6px;
89    padding: 1em;
90    background-color: #f6f8fa;
91    color: #393a34;
92}
93#table_of_contents ul {
94    list-style-type: none;
95    padding-left: 1.5em;
96}
97#table_of_contents li {
98    font-size: 0.9em;
99}
100#table_of_contents li a {
101    color: #000000;
102}
103
104header.title {
105    border-bottom: solid 1px #e1e4e8;
106}
107header.title > h1 {
108    margin-bottom: 0.25em;
109}
110header.title > .description {
111    display: block;
112    margin-bottom: 0.5em;
113    line-height: 1;
114}
115
116footer#edit {
117    border-top: solid 1px #e1e4e8;
118    margin: 3em 0 4em 0;
119    padding-top: 2em;
120}
121</style>
122</head>
123<body>
124<div id="banner">
125<div id="rainbar"></div>
126<div id="logobar">
127<svg class="logo" role="img" height="32" width="32" viewBox="0 0 700 700">
128<polygon fill="#cb0000" points="0,700 700,700 700,0 0,0"></polygon>
129<polygon fill="#ffffff" points="150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150"></polygon>
130</svg>
131<div class="title">
132npm command-line interface
133</div>
134</div>
135</div>
136
137<section id="content">
138<header class="title">
139<h1 id="dependency-selector-syntax--querying">Dependency Selector Syntax &amp; Querying</h1>
140<span class="description">Dependency Selector Syntax &amp; Querying</span>
141</header>
142
143<section id="table_of_contents">
144<h2 id="table-of-contents">Table of contents</h2>
145<div id="_table_of_contents"><ul><li><a href="#see-also">See Also</a></li></ul></div>
146</section>
147
148<div id="_content"><h3 id="description">Description</h3>
149<p>The <a href="../commands/npm-query.html"><code>npm query</code></a> command exposes a new dependency selector syntax (informed by &amp; respecting many aspects of the <a href="https://dev.w3.org/csswg/selectors4/#relational">CSS Selectors 4 Spec</a>) which:</p>
150<ul>
151<li>Standardizes the shape of, &amp; querying of, dependency graphs with a robust object model, metadata &amp; selector syntax</li>
152<li>Leverages existing, known language syntax &amp; operators from CSS to make disparate package information broadly accessible</li>
153<li>Unlocks the ability to answer complex, multi-faceted questions about dependencies, their relationships &amp; associative metadata</li>
154<li>Consolidates redundant logic of similar query commands in <code>npm</code> (ex. <code>npm fund</code>, <code>npm ls</code>, <code>npm outdated</code>, <code>npm audit</code> ...)</li>
155</ul>
156<h3 id="dependency-selector-syntax-v100">Dependency Selector Syntax <code>v1.0.0</code></h3>
157<h4 id="overview">Overview:</h4>
158<ul>
159<li>there is no "type" or "tag" selectors (ex. <code>div, h1, a</code>) as a dependency/target is the only type of <code>Node</code> that can be queried</li>
160<li>the term "dependencies" is in reference to any <code>Node</code> found in a <code>tree</code> returned by <code>Arborist</code></li>
161</ul>
162<h4 id="combinators">Combinators</h4>
163<ul>
164<li><code>&gt;</code> direct descendant/child</li>
165<li><code> </code> any descendant/child</li>
166<li><code>~</code> sibling</li>
167</ul>
168<h4 id="selectors">Selectors</h4>
169<ul>
170<li><code>*</code> universal selector</li>
171<li><code>#&lt;name&gt;</code> dependency selector (equivalent to <code>[name="..."]</code>)</li>
172<li><code>#&lt;name&gt;@&lt;version&gt;</code> (equivalent to <code>[name=&lt;name&gt;]:semver(&lt;version&gt;)</code>)</li>
173<li><code>,</code> selector list delimiter</li>
174<li><code>.</code> dependency type selector</li>
175<li><code>:</code> pseudo selector</li>
176</ul>
177<h4 id="dependency-type-selectors">Dependency Type Selectors</h4>
178<ul>
179<li><code>.prod</code> dependency found in the <code>dependencies</code> section of <code>package.json</code>, or is a child of said dependency</li>
180<li><code>.dev</code> dependency found in the <code>devDependencies</code> section of <code>package.json</code>, or is a child of said dependency</li>
181<li><code>.optional</code> dependency found in the <code>optionalDependencies</code> section of <code>package.json</code>, or has <code>"optional": true</code> set in its entry in the <code>peerDependenciesMeta</code> section of <code>package.json</code>, or a child of said dependency</li>
182<li><code>.peer</code> dependency found in the <code>peerDependencies</code> section of <code>package.json</code></li>
183<li><code>.workspace</code> dependency found in the <a href="https://docs.npmjs.com/cli/v8/using-npm/workspaces"><code>workspaces</code></a> section of <code>package.json</code></li>
184<li><code>.bundled</code> dependency found in the <code>bundleDependencies</code> section of <code>package.json</code>, or is a child of said dependency</li>
185</ul>
186<h4 id="pseudo-selectors">Pseudo Selectors</h4>
187<ul>
188<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:not"><code>:not(&lt;selector&gt;)</code></a></li>
189<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:has"><code>:has(&lt;selector&gt;)</code></a></li>
190<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:is"><code>:is(&lt;selector list&gt;)</code></a></li>
191<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:root"><code>:root</code></a> matches the root node/dependency</li>
192<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:scope"><code>:scope</code></a> matches node/dependency it was queried against</li>
193<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:empty"><code>:empty</code></a> when a dependency has no dependencies</li>
194<li><a href="https://docs.npmjs.com/cli/v8/configuring-npm/package-json#private"><code>:private</code></a> when a dependency is private</li>
195<li><code>:link</code> when a dependency is linked (for instance, workspaces or packages manually <a href="https://docs.npmjs.com/cli/v8/commands/npm-link"><code>linked</code></a></li>
196<li><code>:deduped</code> when a dependency has been deduped (note that this does <em>not</em> always mean the dependency has been hoisted to the root of node_modules)</li>
197<li><code>:overridden</code> when a dependency has been overridden</li>
198<li><code>:extraneous</code> when a dependency exists but is not defined as a dependency of any node</li>
199<li><code>:invalid</code> when a dependency version is out of its ancestors specified range</li>
200<li><code>:missing</code> when a dependency is not found on disk</li>
201<li><code>:semver(&lt;spec&gt;, [selector], [function])</code> match a valid <a href="https://github.com/npm/node-semver"><code>node-semver</code></a> version or range to a selector</li>
202<li><code>:path(&lt;path&gt;)</code> <a href="https://www.npmjs.com/package/glob">glob</a> matching based on dependencies path relative to the project</li>
203<li><code>:type(&lt;type&gt;)</code> <a href="https://github.com/npm/npm-package-arg#result-object">based on currently recognized types</a></li>
204<li><code>:outdated(&lt;type&gt;)</code> when a dependency is outdated</li>
205</ul>
206<h5 id="semverspec-selector-function"><code>:semver(&lt;spec&gt;, [selector], [function])</code></h5>
207<p>The <code>:semver()</code> pseudo selector allows comparing fields from each node's <code>package.json</code> using <a href="https://github.com/npm/node-semver#readme">semver</a> methods. It accepts up to 3 parameters, all but the first of which are optional.</p>
208<ul>
209<li><code>spec</code> a semver version or range</li>
210<li><code>selector</code> an attribute selector for each node (default <code>[version]</code>)</li>
211<li><code>function</code> a semver method to apply, one of: <code>satisfies</code>, <code>intersects</code>, <code>subset</code>, <code>gt</code>, <code>gte</code>, <code>gtr</code>, <code>lt</code>, <code>lte</code>, <code>ltr</code>, <code>eq</code>, <code>neq</code> or the special function <code>infer</code> (default <code>infer</code>)</li>
212</ul>
213<p>When the special <code>infer</code> function is used the <code>spec</code> and the actual value from the node are compared. If both are versions, according to <code>semver.valid()</code>, <code>eq</code> is used. If both values are ranges, according to <code>!semver.valid()</code>, <code>intersects</code> is used. If the values are mixed types <code>satisfies</code> is used.</p>
214<p>Some examples:</p>
215<ul>
216<li><code>:semver(^1.0.0)</code> returns every node that has a <code>version</code> satisfied by the provided range <code>^1.0.0</code></li>
217<li><code>:semver(16.0.0, :attr(engines, [node]))</code> returns every node which has an <code>engines.node</code> property satisfying the version <code>16.0.0</code></li>
218<li><code>:semver(1.0.0, [version], lt)</code> every node with a <code>version</code> less than <code>1.0.0</code></li>
219</ul>
220<h5 id="outdatedtype"><code>:outdated(&lt;type&gt;)</code></h5>
221<p>The <code>:outdated</code> pseudo selector retrieves data from the registry and returns information about which of your dependencies are outdated. The type parameter may be one of the following:</p>
222<ul>
223<li><code>any</code> (default) a version exists that is greater than the current one</li>
224<li><code>in-range</code> a version exists that is greater than the current one, and satisfies at least one if its dependents</li>
225<li><code>out-of-range</code> a version exists that is greater than the current one, does not satisfy at least one of its dependents</li>
226<li><code>major</code> a version exists that is a semver major greater than the current one</li>
227<li><code>minor</code> a version exists that is a semver minor greater than the current one</li>
228<li><code>patch</code> a version exists that is a semver patch greater than the current one</li>
229</ul>
230<p>In addition to the filtering performed by the pseudo selector, some extra data is added to the resulting objects. The following data can be found under the <code>queryContext</code> property of each node.</p>
231<ul>
232<li><code>versions</code> an array of every available version of the given node</li>
233<li><code>outdated.inRange</code> an array of objects, each with a <code>from</code> and <code>versions</code>, where <code>from</code> is the on-disk location of the node that depends on the current node and <code>versions</code> is an array of all available versions that satisfies that dependency. This is only populated if <code>:outdated(in-range)</code> is used.</li>
234<li><code>outdated.outOfRange</code> an array of objects, identical in shape to <code>inRange</code>, but where the <code>versions</code> array is every available version that does not satisfy the dependency. This is only populated if <code>:outdated(out-of-range)</code> is used.</li>
235</ul>
236<p>Some examples:</p>
237<ul>
238<li><code>:root &gt; :outdated(major)</code> returns every direct dependency that has a new semver major release</li>
239<li><code>.prod:outdated(in-range)</code> returns production dependencies that have a new release that satisfies at least one of its edges in</li>
240</ul>
241<h4 id="attribute-selectors"><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors">Attribute Selectors</a></h4>
242<p>The attribute selector evaluates the key/value pairs in <code>package.json</code> if they are <code>String</code>s.</p>
243<ul>
244<li><code>[]</code> attribute selector (ie. existence of attribute)</li>
245<li><code>[attribute=value]</code> attribute value is equivalant...</li>
246<li><code>[attribute~=value]</code> attribute value contains word...</li>
247<li><code>[attribute*=value]</code> attribute value contains string...</li>
248<li><code>[attribute|=value]</code> attribute value is equal to or starts with...</li>
249<li><code>[attribute^=value]</code> attribute value starts with...</li>
250<li><code>[attribute$=value]</code> attribute value ends with...</li>
251</ul>
252<h4 id="array--object-attribute-selectors"><code>Array</code> &amp; <code>Object</code> Attribute Selectors</h4>
253<p>The generic <code>:attr()</code> pseudo selector standardizes a pattern which can be used for attribute selection of <code>Object</code>s, <code>Array</code>s or <code>Arrays</code> of <code>Object</code>s accessible via <code>Arborist</code>'s <code>Node.package</code> metadata. This allows for iterative attribute selection beyond top-level <code>String</code> evaluation. The last argument passed to <code>:attr()</code> must be an <code>attribute</code> selector or a nested <code>:attr()</code>. See examples below:</p>
254<h4 id="objects"><code>Objects</code></h4>
255<pre><code class="language-css">/* return dependencies that have a `scripts.test` containing `"tap"` */
256*:attr(scripts, [test~=tap])
257</code></pre>
258<h4 id="nested-objects">Nested <code>Objects</code></h4>
259<p>Nested objects are expressed as sequential arguments to <code>:attr()</code>.</p>
260<pre><code class="language-css">/* return dependencies that have a testling config for opera browsers */
261*:attr(testling, browsers, [~=opera])
262</code></pre>
263<h4 id="arrays"><code>Arrays</code></h4>
264<p><code>Array</code>s specifically uses a special/reserved <code>.</code> character in place of a typical attribute name. <code>Arrays</code> also support exact <code>value</code> matching when a <code>String</code> is passed to the selector.</p>
265<h5 id="example-of-an-array-attribute-selection">Example of an <code>Array</code> Attribute Selection:</h5>
266<pre><code class="language-css">/* removes the distinction between properties &amp; arrays */
267/* ie. we'd have to check the property &amp; iterate to match selection */
268*:attr([keywords^=react])
269*:attr(contributors, :attr([name~=Jordan]))
270</code></pre>
271<h5 id="example-of-an-array-matching-directly-to-a-value">Example of an <code>Array</code> matching directly to a value:</h5>
272<pre><code class="language-css">/* return dependencies that have the exact keyword "react" */
273/* this is equivalent to `*:keywords([value="react"])` */
274*:attr([keywords=react])
275</code></pre>
276<h5 id="example-of-an-array-of-objects">Example of an <code>Array</code> of <code>Object</code>s:</h5>
277<pre><code class="language-css">/* returns */
278*:attr(contributors, [email=ruyadorno@github.com])
279</code></pre>
280<h3 id="groups">Groups</h3>
281<p>Dependency groups are defined by the package relationships to their ancestors (ie. the dependency types that are defined in <code>package.json</code>). This approach is user-centric as the ecosystem has been taught to think about dependencies in these groups first-and-foremost. Dependencies are allowed to be included in multiple groups (ex. a <code>prod</code> dependency may also be a <code>dev</code> dependency (in that it's also required by another <code>dev</code> dependency) &amp; may also be <code>bundled</code> - a selector for that type of dependency would look like: <code>*.prod.dev.bundled</code>).</p>
282<ul>
283<li><code>.prod</code></li>
284<li><code>.dev</code></li>
285<li><code>.optional</code></li>
286<li><code>.peer</code></li>
287<li><code>.bundled</code></li>
288<li><code>.workspace</code></li>
289</ul>
290<p>Please note that currently <code>workspace</code> deps are always <code>prod</code> dependencies.  Additionally the <code>.root</code> dependency is also considered a <code>prod</code> dependency.</p>
291<h3 id="programmatic-usage">Programmatic Usage</h3>
292<ul>
293<li><code>Arborist</code>'s <code>Node</code> Class has a <code>.querySelectorAll()</code> method
294<ul>
295<li>this method will return a filtered, flattened dependency Arborist <code>Node</code> list based on a valid query selector</li>
296</ul>
297</li>
298</ul>
299<pre><code class="language-js">const Arborist = require('@npmcli/arborist')
300const arb = new Arborist({})
301</code></pre>
302<pre><code class="language-js">// root-level
303arb.loadActual().then(async (tree) =&gt; {
304  // query all production dependencies
305  const results = await tree.querySelectorAll('.prod')
306  console.log(results)
307})
308</code></pre>
309<pre><code class="language-js">// iterative
310arb.loadActual().then(async (tree) =&gt; {
311  // query for the deduped version of react
312  const results = await tree.querySelectorAll('#react:not(:deduped)')
313  // query the deduped react for git deps
314  const deps = await results[0].querySelectorAll(':type(git)')
315  console.log(deps)
316})
317</code></pre>
318<h2 id="see-also">See Also</h2>
319<ul>
320<li><a href="../commands/npm-query.html">npm query</a></li>
321<li><a href="https://npm.im/@npmcli/arborist">@npmcli/arborist</a></li>
322</ul></div>
323
324<footer id="edit">
325<a href="https://github.com/npm/cli/edit/latest/docs/content/using-npm/dependency-selectors.md">
326<svg role="img" viewBox="0 0 16 16" width="16" height="16" fill="currentcolor" style="vertical-align: text-bottom; margin-right: 0.3em;">
327<path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path>
328</svg>
329Edit this page on GitHub
330</a>
331</footer>
332</section>
333
334
335
336</body></html>