Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.1 « man1 « man « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 981f69876e5aafc1d25b33c8ed43b8ce518bd96c (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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
.\" Generated with Ronnjs/v0.1
.\" http://github.com/kapouer/ronnjs/
.
.TH "NPM" "1" "February 2012" "" ""
.
.SH "NAME"
\fBnpm\fR \-\- node package manager
.
.SH "SYNOPSIS"
This is just enough info to get you up and running\.
.
.P
Much more info available via \fBnpm help\fR once it\'s installed\.
.
.SH "IMPORTANT"
\fBYou need node v0\.6 or higher to run this program\.\fR
.
.P
To install an old \fBand unsupported\fR version of npm that works on node 0\.3
and prior, clone the git repo and dig through the old tags and branches\.
.
.SH "Super Easy Install"
npm comes with node now\.
.
.SS "Windows Computers"
Get the MSI\.  npm is in it\.
.
.SS "Apple Macintosh Computers"
Get the pkg\.  npm is in it\.
.
.SS "Other Sorts of Unices"
Run \fBmake install\fR\|\.  npm will be installed with node\.
.
.P
If you want a more fancy pants install (a different version, customized
paths, etc\.) then read on\.
.
.SH "Fancy Install (Unix)"
To install npm with one command, do this:
.
.IP "" 4
.
.nf
curl http://npmjs\.org/install\.sh | sh
.
.fi
.
.IP "" 0
.
.P
To skip the npm 0\.x cleanup, do this:
.
.IP "" 4
.
.nf
curl http://npmjs\.org/install\.sh | clean=no sh
.
.fi
.
.IP "" 0
.
.P
To say "yes" to the 0\.x cleanup, but skip the prompt:
.
.IP "" 4
.
.nf
curl http://npmjs\.org/install\.sh | clean=yes sh
.
.fi
.
.IP "" 0
.
.P
If you get permission errors, you\'ll need to \fBrun\fR the script as root\.
(Note, just putting \fBsudo\fR in front of the \fBcurl\fR will \fBfetch\fR the script
as root\.)
.
.SS "Slightly Fancier"
You can set any npm configuration params with that script:
.
.IP "" 4
.
.nf
curl http://npmjs\.org/install\.sh | npm_config_prefix=/some/path sh
.
.fi
.
.IP "" 0
.
.P
Or, you can run it in uber\-debuggery mode:
.
.IP "" 4
.
.nf
curl http://npmjs\.org/install\.sh | npm_debug=1 sh
.
.fi
.
.IP "" 0
.
.SS "Even Fancier"
Get the code with git\.  Use \fBmake\fR to build the docs and do other stuff\.
If you plan on hacking on npm, \fBmake link\fR is your friend\.
.
.P
If you\'ve got the npm source code, you can also semi\-permanently set
arbitrary config keys using the \fB\|\./configure \-\-key=val \.\.\.\fR, and then
run npm commands by doing \fBnode cli\.js <cmd> <args>\fR\|\.  (This is helpful
for testing, or running stuff without actually installing npm itself\.)
.
.SH "Fancy Windows Install"
You can download a zip file from \fIhttp://npmjs\.org/dist/\fR, and unpack it
in the same folder where node\.exe lives\.
.
.P
If that\'s not fancy enough for you, then you can fetch the code with
git, and mess with it directly\.
.
.SH "Installing on Cygwin"
No\.
.
.SH "Dev Install"
To install the latest \fBunstable\fR development version from git:
.
.IP "" 4
.
.nf
git clone https://github\.com/isaacs/npm\.git
cd npm
git submodule update \-\-init \-\-recursive
sudo make install     # (or: `node cli\.js install \-gf`)
.
.fi
.
.IP "" 0
.
.P
If you\'re sitting in the code folder reading this document in your
terminal, then you\'ve already got the code\.  Just do:
.
.IP "" 4
.
.nf
git submodule update \-\-init \-\-recursive
sudo make install
.
.fi
.
.IP "" 0
.
.P
and npm will install itself\.
.
.P
Note that github tarballs \fBdo not contain submodules\fR, so
those won\'t work\.  You\'ll have to also fetch the appropriate submodules
listed in the \.gitmodules file\.
.
.SH "Permissions when Using npm to Install Other Stuff"
\fBtl;dr\fR
.
.IP "\(bu" 4
Use \fBsudo\fR for greater safety\.  Or don\'t, if you prefer not to\.
.
.IP "\(bu" 4
npm will downgrade permissions if it\'s root before running any build
scripts that package authors specified\.
.
.IP "" 0
.
.SS "More details\.\.\."
As of version 0\.3, it is recommended to run npm as root\.
This allows npm to change the user identifier to the \fBnobody\fR user prior
to running any package build or test commands\.
.
.P
If you are not the root user, or if you are on a platform that does not
support uid switching, then npm will not attempt to change the userid\.
.
.P
If you would like to ensure that npm \fBalways\fR runs scripts as the
"nobody" user, and have it fail if it cannot downgrade permissions, then
set the following configuration param:
.
.IP "" 4
.
.nf
npm config set unsafe\-perm false
.
.fi
.
.IP "" 0
.
.P
This will prevent running in unsafe mode, even as non\-root users\.
.
.SH "Uninstalling"
So sad to see you go\.
.
.IP "" 4
.
.nf
sudo npm uninstall npm \-g
.
.fi
.
.IP "" 0
.
.P
Or, if that fails,
.
.IP "" 4
.
.nf
sudo make uninstall
.
.fi
.
.IP "" 0
.
.SH "More Severe Uninstalling"
Usually, the above instructions are sufficient\.  That will remove
npm, but leave behind anything you\'ve installed\.
.
.P
If you would like to remove all the packages that you have installed,
then you can use the \fBnpm ls\fR command to find them, and then \fBnpm rm\fR to
remove them\.
.
.P
To remove cruft left behind by npm 0\.x, you can use the included \fBclean\-old\.sh\fR script file\.  You can run it conveniently like this:
.
.IP "" 4
.
.nf
npm explore npm \-g \-\- sh scripts/clean\-old\.sh
.
.fi
.
.IP "" 0
.
.P
npm uses two configuration files, one for per\-user configs, and another
for global (every\-user) configs\.  You can view them by doing:
.
.IP "" 4
.
.nf
npm config get userconfig   # defaults to ~/\.npmrc
npm config get globalconfig # defaults to /usr/local/etc/npmrc
.
.fi
.
.IP "" 0
.
.P
Uninstalling npm does not remove configuration files by default\.  You
must remove them yourself manually if you want them gone\.  Note that
this means that future npm installs will not remember the settings that
you have chosen\.
.
.SH "Using npm Programmatically"
If you would like to use npm programmatically, you can do that\.
It\'s not very well documented, but it \fIis\fR rather simple\.
.
.IP "" 4
.
.nf
var npm = require("npm")
npm\.load(myConfigObject, function (er) {
  if (er) return handlError(er)
  npm\.commands\.install(["some", "args"], function (er, data) {
    if (er) return commandFailed(er)
    // command succeeded, and data might have some info
  })
  npm\.on("log", function (message) { \.\.\.\. })
})
.
.fi
.
.IP "" 0
.
.P
The \fBload\fR function takes an object hash of the command\-line configs\.
The various \fBnpm\.commands\.<cmd>\fR functions take an \fBarray\fR of
positional argument \fBstrings\fR\|\.  The last argument to any \fBnpm\.commands\.<cmd>\fR function is a callback\.  Some commands take other
optional arguments\.  Read the source\.
.
.P
You cannot set configs individually for any single npm function at this
time\.  Since \fBnpm\fR is a singleton, any call to \fBnpm\.config\.set\fR will
change the value for \fIall\fR npm commands in that process\.
.
.P
See \fB\|\./bin/npm\-cli\.js\fR for an example of pulling config values off of the
command line arguments using nopt\.  You may also want to check out \fBnpm
help config\fR to learn about all the options you can set there\.
.
.SH "More Docs"
Check out the docs \fIhttp://npmjs\.org/doc/\fR,
especially the faq \fIhttp://npmjs\.org/doc/faq\.html\fR\|\.
.
.P
You can use the \fBnpm help\fR command to read any of them\.
.
.P
If you\'re a developer, and you want to use npm to publish your program,
you should read this \fIhttp://npmjs\.org/doc/developers\.html\fR
.
.SH "Legal Stuff"
"npm" and "the npm registry" are owned by Isaac Z\. Schlueter\.  All
rights not explicitly granted in the MIT license are reserved\. See the
included LICENSE file for more details\.
.
.P
"Node\.js" and "node" are trademarks owned by Joyent, Inc\.  npm is not
officially part of the Node\.js project, and is neither owned by nor
officially affiliated with Joyent, Inc\.
.
.P
The packages in the npm registry are not part of npm itself, and are the
sole property of their respective maintainers\.  While every effort is
made to ensure accountability, there is absolutely no guarantee,
warrantee, or assertion made as to the quality, fitness for a specific
purpose, or lack of malice in any given npm package\.  Modules
published on the npm registry are not affiliated with or endorsed by
Joyent, Inc\., Isaac Z\. Schlueter, Ryan Dahl, or the Node\.js project\.
.
.P
If you have a complaint about a package in the npm registry, and cannot
resolve it with the package owner, please express your concerns to
Isaac Z\. Schlueter at \fIi@izs\.me\fR\|\.
.
.SS "In plain english"
This is mine; not my employer\'s, not Node\'s, not Joyent\'s, not Ryan
Dahl\'s\.
.
.P
If you publish something, it\'s yours, and you are solely accountable
for it\.  Not me, not Node, not Joyent, not Ryan Dahl\.
.
.P
If other people publish something, it\'s theirs\.  Not mine, not Node\'s,
not Joyent\'s, not Ryan Dahl\'s\.
.
.P
Yes, you can publish something evil\.  It will be removed promptly if
reported, and we\'ll lose respect for you\.  But there is no vetting
process for published modules\.
.
.P
If this concerns you, inspect the source before using packages\.
.
.SH "BUGS"
When you find issues, please report them:
.
.IP "\(bu" 4
web: \fIhttp://github\.com/isaacs/npm/issues\fR
.
.IP "\(bu" 4
email: \fInpm\-@googlegroups\.com\fR
.
.IP "" 0
.
.P
Be sure to include \fIall\fR of the output from the npm command that didn\'t work
as expected\.  The \fBnpm\-debug\.log\fR file is also helpful to provide\.
.
.P
You can also look for isaacs in #node\.js on irc://irc\.freenode\.net\.  He
will no doubt tell you to put the output in a gist or email\.
.
.SH "SEE ALSO"
.
.IP "\(bu" 4
npm help npm
.
.IP "\(bu" 4
npm help faq
.
.IP "\(bu" 4
npm help help
.
.IP "\(bu" 4
npm help index
.
.IP "" 0