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

developers.1 « man1 - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d8b56590328d0f68e4c873a23155e818e23de8a (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
.\" Generated with Ronnjs/v0.1
.\" http://github.com/kapouer/ronnjs/
.
.TH "NPM\-DEVELOPERS" "1" "January 2011" "" ""
.
.SH "NAME"
\fBnpm-developers\fR \-\- Developer Guide
.
.SH "DESCRIPTION"
So, you\'ve decided to use npm to develop (and maybe publish/deploy)
your project\.
.
.P
Fantastic!
.
.P
There are a few things that you need to do above the simple steps
that your users will do to install your program\.
.
.SH "About These Documents"
These are man pages\.  If you install npm, you should be able to
then do \fBman npm\-thing\fR to get the documentation on a particular
topic\.
.
.P
Any time you see "see npm\-whatever(1)", you can do \fBman npm\-whatever\fR
or \fBnpm help whatever\fR to get at the docs\.
.
.SH "What is a `package`"
A package is:
.
.IP "\(bu" 4
a) a folder containing a program described by a package\.json file
.
.IP "\(bu" 4
b) a gzipped tarball containing (a)
.
.IP "\(bu" 4
c) a url that resolves to (b)
.
.IP "\(bu" 4
d) a \fB<name>@<version>\fR that is published on the registry with (c)
.
.IP "\(bu" 4
e) a \fB<name>@<tag>\fR that points to (d)
.
.IP "\(bu" 4
f) a \fB<name>\fR that has a "latest" tag satisfying (e)
.
.IP "" 0
.
.P
Even if you never publish your package, you can still get a lot of
benefits of using npm if you just want to write a node program (a), and
perhaps if you also want to be able to easily install it elsewhere
after packing it up into a tarball (b)\.
.
.SH "The package\.json File"
You need to have a \fBpackage\.json\fR file in the root of your project to do
much of anything with npm\.  That is basically the whole interface\.
.
.P
See npm\-json(1) for details about what goes in that file\.  At the very
least, you need:
.
.IP "\(bu" 4
name:
This should be a string that identifies your project\.  Please do not
use the name to specify that it runs on node, or is in JavaScript\.
You can use the "engines" field to explicitly state the versions of
node (or whatever else) that your program requires, and it\'s pretty
well assumed that it\'s javascript\.
.
.IP
It does not necessarily need to match your github repository name\.
.
.IP
So, \fBnode\-foo\fR and \fBbar\-js\fR are bad names\.  \fBfoo\fR or \fBbar\fR are better\.
.
.IP "\(bu" 4
version:
A semver\-compatible version\.
.
.IP "\(bu" 4
engines:
Specify the versions of node (or whatever else) that your program
runs on\.  The node API changes a lot, and there may be bugs or new
functionality that you depend on\.  Be explicit\.
.
.IP "\(bu" 4
author:
Take some credit\.
.
.IP "\(bu" 4
scripts:
If you have a special compilation or installation script, then you
should put it in the \fBscripts\fR hash\.  See npm\-scripts(1)\.
.
.IP "\(bu" 4
main:
If you have a single module that serves as the entry point to your
program (like what the "foo" package gives you at require("foo")),
then you need to specify that in the "main" field\.
.
.IP "\(bu" 4
directories:
This is a hash of folders\.  The best ones to include are "lib" and
"doc", but if you specify a folder full of man pages in "man", then
they\'ll get installed just like these ones\.
.
.IP "" 0
.
.P
You can use \fBnpm init\fR in the root of your package in order to get you
started with a pretty basic package\.json file\.  See \fBnpm\-init(1)\fR for
more info\.
.
.SH "Bundling Dependencies"
If you depend on something that is not published (but has a package\.json
file) then you can \fBbundle\fR that dependency into your package\.
.
.IP "\(bu" 4
Add the \fB"name":"version"\fR to your dependency hash, as if it was a
published package\.
.
.IP "\(bu" 4
Do \fBnpm bundle install <pkg>\fR where \fB<pkg>\fR is the path/tarball/url to
the unpublished package\.
.
.IP "" 0
.
.P
To bundle dependencies that ARE published (perhaps, if you will not have
access to the registry when it is installed, or if you would like to
make some modifications to them), you can use \fBnpm bundle\fR (with no
other arguments) to bundle\-install all your dependencies\.
.
.P
More info at \fBnpm\-bundle(1)\fR\|\.
.
.SH "Link Packages"
\fBnpm link\fR is designed to install a development package and see the
changes in real time without having to keep re\-installing it\.  (You do
need to either re\-link or \fBnpm rebuild\fR to update compiled packages,
of course\.)
.
.P
More info at \fBnpm\-link(1)\fR\|\.
.
.SH "Before Publishing: Make Sure Your Package Installs and Works"
\fBThis is important\.\fR
.
.P
If you can not install it locally, you\'ll have
problems trying to publish it\.  Or, worse yet, you\'ll be able to
publish it, but you\'ll be publishing a broken or pointless package\.
So don\'t do that\.
.
.P
In the root of your package, do this:
.
.IP "" 4
.
.nf
npm install
.
.fi
.
.IP "" 0
.
.P
That\'ll show you that it\'s working\.  If you\'d rather just create a symlink
package that points to your working directory, then do this:
.
.IP "" 4
.
.nf
npm link
.
.fi
.
.IP "" 0
.
.P
Use \fBnpm ls installed\fR to see if it\'s there\.
.
.P
Then go into the node\-repl, and try using require() to bring in your module\'s
main and libs things\.  Assuming that you have a package like this:
.
.IP "" 4
.
.nf
node_foo/
  lib/
    foo\.js
    bar\.js
.
.fi
.
.IP "" 0
.
.P
and you define your package\.json with this in it:
.
.IP "" 4
.
.nf
{ "name" : "foo"
, "directories" : { "lib" : "\./lib" }
, "main" : "\./lib/foo"
}
.
.fi
.
.IP "" 0
.
.P
then you\'d want to make sure that require("foo") and require("foo/bar") both
work and bring in the appropriate modules\.
.
.SH "Create a User Account"
Create a user with the adduser command\.  It works like this:
.
.IP "" 4
.
.nf
npm adduser
.
.fi
.
.IP "" 0
.
.P
and then follow the prompts\.
.
.P
This is documented better in npm\-adduser(1)\.  So do this to get the
details:
.
.IP "" 4
.
.nf
npm help adduser
.
.fi
.
.IP "" 0
.
.SH "Publish your package"
This part\'s easy\.  IN the root of your folder, do this:
.
.IP "" 4
.
.nf
npm publish
.
.fi
.
.IP "" 0
.
.P
You can give publish a url to a tarball, or a filename of a tarball,
or a path to a folder\.
.
.SH "Brag about it"
Send emails, write blogs, blab in IRC\.
.
.P
Tell the world how easy it is to install your program!