summaryrefslogtreecommitdiff
path: root/deps/npm/man/man1/npx.1
blob: e4a29ef653c50aa2c611a36d0b92d091c58fca14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
.TH "NPX" "1" "February 2022" "" ""
.SH "NAME"
\fBnpx\fR \- Run a command from a local or remote npm package
.SS Synopsis
.P
.RS 2
.nf
npx \-\- <pkg>[@<version>] [args\.\.\.]
npx \-\-package=<pkg>[@<version>] \-\- <cmd> [args\.\.\.]
npx \-c '<cmd> [args\.\.\.]'
npx \-\-package=foo \-c '<cmd> [args\.\.\.]'
.fi
.RE
.SS Description
.P
This command allows you to run an arbitrary command from an npm package
(either one installed locally, or fetched remotely), in a similar context
as running it via \fBnpm run\fP\|\.
.P
Whatever packages are specified by the \fB\-\-package\fP option will be
provided in the \fBPATH\fP of the executed command, along with any locally
installed package executables\.  The \fB\-\-package\fP option may be
specified multiple times, to execute the supplied command in an environment
where all specified packages are available\.
.P
If any requested packages are not present in the local project
dependencies, then they are installed to a folder in the npm cache, which
is added to the \fBPATH\fP environment variable in the executed process\.  A
prompt is printed (which can be suppressed by providing either \fB\-\-yes\fP or
\fB\-\-no\fP)\.
.P
Package names provided without a specifier will be matched with whatever
version exists in the local project\.  Package names with a specifier will
only be considered a match if they have the exact same name and version as
the local dependency\.
.P
If no \fB\-c\fP or \fB\-\-call\fP option is provided, then the positional arguments
are used to generate the command string\.  If no \fB\-\-package\fP options
are provided, then npm will attempt to determine the executable name from
the package specifier provided as the first positional argument according
to the following heuristic:
.RS 0
.IP \(bu 2
If the package has a single entry in its \fBbin\fP field in \fBpackage\.json\fP,
or if all entries are aliases of the same command, then that command
will be used\.
.IP \(bu 2
If the package has multiple \fBbin\fP entries, and one of them matches the
unscoped portion of the \fBname\fP field, then that command will be used\.
.IP \(bu 2
If this does not result in exactly one option (either because there are
no bin entries, or none of them match the \fBname\fP of the package), then
\fBnpm exec\fP exits with an error\.

.RE
.P
To run a binary \fIother than\fR the named binary, specify one or more
\fB\-\-package\fP options, which will prevent npm from inferring the package from
the first command argument\.
.SS \fBnpx\fP vs \fBnpm exec\fP
.P
When run via the \fBnpx\fP binary, all flags and options \fImust\fR be set prior to
any positional arguments\.  When run via \fBnpm exec\fP, a double\-hyphen \fB\-\-\fP
flag can be used to suppress npm's parsing of switches and options that
should be sent to the executed command\.
.P
For example:
.P
.RS 2
.nf
$ npx foo@latest bar \-\-package=@npmcli/foo
.fi
.RE
.P
In this case, npm will resolve the \fBfoo\fP package name, and run the
following command:
.P
.RS 2
.nf
$ foo bar \-\-package=@npmcli/foo
.fi
.RE
.P
Since the \fB\-\-package\fP option comes \fIafter\fR the positional arguments, it is
treated as an argument to the executed command\.
.P
In contrast, due to npm's argument parsing logic, running this command is
different:
.P
.RS 2
.nf
$ npm exec foo@latest bar \-\-package=@npmcli/foo
.fi
.RE
.P
In this case, npm will parse the \fB\-\-package\fP option first, resolving the
\fB@npmcli/foo\fP package\.  Then, it will execute the following command in that
context:
.P
.RS 2
.nf
$ foo@latest bar
.fi
.RE
.P
The double\-hyphen character is recommended to explicitly tell npm to stop
parsing command line options and switches\.  The following command would
thus be equivalent to the \fBnpx\fP command above:
.P
.RS 2
.nf
$ npm exec \-\- foo@latest bar \-\-package=@npmcli/foo
.fi
.RE
.SS Examples
.P
Run the version of \fBtap\fP in the local dependencies, with the provided
arguments:
.P
.RS 2
.nf
$ npm exec \-\- tap \-\-bail test/foo\.js
$ npx tap \-\-bail test/foo\.js
.fi
.RE
.P
Run a command \fIother than\fR the command whose name matches the package name
by specifying a \fB\-\-package\fP option:
.P
.RS 2
.nf
$ npm exec \-\-package=foo \-\- bar \-\-bar\-argument
# ~ or ~
$ npx \-\-package=foo bar \-\-bar\-argument
.fi
.RE
.P
Run an arbitrary shell script, in the context of the current project:
.P
.RS 2
.nf
$ npm x \-c 'eslint && say "hooray, lint passed"'
$ npx \-c 'eslint && say "hooray, lint passed"'
.fi
.RE
.SS Compatibility with Older npx Versions
.P
The \fBnpx\fP binary was rewritten in npm v7\.0\.0, and the standalone \fBnpx\fP
package deprecated at that time\.  \fBnpx\fP uses the \fBnpm exec\fP
command instead of a separate argument parser and install process, with
some affordances to maintain backwards compatibility with the arguments it
accepted in previous versions\.
.P
This resulted in some shifts in its functionality:
.RS 0
.IP \(bu 2
Any \fBnpm\fP config value may be provided\.
.IP \(bu 2
To prevent security and user\-experience problems from mistyping package
names, \fBnpx\fP prompts before installing anything\.  Suppress this
prompt with the \fB\-y\fP or \fB\-\-yes\fP option\.
.IP \(bu 2
The \fB\-\-no\-install\fP option is deprecated, and will be converted to \fB\-\-no\fP\|\.
.IP \(bu 2
Shell fallback functionality is removed, as it is not advisable\.
.IP \(bu 2
The \fB\-p\fP argument is a shorthand for \fB\-\-parseable\fP in npm, but shorthand
for \fB\-\-package\fP in npx\.  This is maintained, but only for the \fBnpx\fP
executable\.
.IP \(bu 2
The \fB\-\-ignore\-existing\fP option is removed\.  Locally installed bins are
always present in the executed process \fBPATH\fP\|\.
.IP \(bu 2
The \fB\-\-npm\fP option is removed\.  \fBnpx\fP will always use the \fBnpm\fP it ships
with\.
.IP \(bu 2
The \fB\-\-node\-arg\fP and \fB\-n\fP options are removed\.
.IP \(bu 2
The \fB\-\-always\-spawn\fP option is redundant, and thus removed\.
.IP \(bu 2
The \fB\-\-shell\fP option is replaced with \fB\-\-script\-shell\fP, but maintained
in the \fBnpx\fP executable for backwards compatibility\.

.RE
.SS See Also
.RS 0
.IP \(bu 2
npm help run\-script
.IP \(bu 2
npm help scripts
.IP \(bu 2
npm help test
.IP \(bu 2
npm help start
.IP \(bu 2
npm help restart
.IP \(bu 2
npm help stop
.IP \(bu 2
npm help config
.IP \(bu 2
npm help exec

.RE