File size: 8,088 Bytes
90219c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---

title: Developers
section: 7
description: Developer guide
---


### Description

So, you've decided to use npm to develop (and maybe publish/deploy) your project.

Fantastic!

There are a few things that you need to do above the simple steps that your users will do to install your program.

### About These Documents

These are man pages.
If you install npm, you should be able to then do `man npm-thing` to get the documentation on a particular topic, or `npm help thing` to see the same information.

### What is a Package

A package is:

* a) a folder containing a program described by a package.json file
* b) a gzipped tarball containing (a)
* c) a url that resolves to (b)
* d) a `<name>@<version>` that is published on the registry with (c)
* e) a `<name>@<tag>` that points to (d)
* f) a `<name>` that has a "latest" tag satisfying (e)
* g) a `git` url that, when cloned, results in (a).

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).

Git urls can be of the form:

```bash

git://github.com/user/project.git#commit-ish

git+ssh://user@hostname:project.git#commit-ish

git+http://user@hostname/project/blah.git#commit-ish

git+https://user@hostname/project/blah.git#commit-ish

```

The `commit-ish` can be any tag, sha, or branch which can be supplied as an argument to `git checkout`.
The default is whatever the repository uses as its default branch.

### The package.json File

You need to have a `package.json` file in the root of your project to do much of anything with npm.
That is basically the whole interface.

See [`package.json`](/configuring-npm/package-json) for details about what goes in that file.
At the very least, you need:

* 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.

  It does not necessarily need to match your github repository name.

  So, `node-foo` and `bar-js` are bad names.
  `foo` or `bar` are better.

* version: A semver-compatible version.

* 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.

* author: Take some credit.

* scripts: If you have a special compilation or installation script, then you should put it in the `scripts` object.
  You should definitely have at least a basic smoke-test command as the "scripts.test" field.
  See [scripts](/using-npm/scripts).

* 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.

* directories: This is an object mapping names to folders.
  The best ones to include are "lib" and "doc", but if you use "man" to specify a folder full of man pages, they'll get installed just like these ones.

You can use `npm init` in the root of your package in order to get you started with a pretty basic package.json file.
See [`npm init`](/commands/npm-init) for more info.

### Keeping files *out* of your Package

Use a `.npmignore` file to keep stuff out of your package.
If there's no `.npmignore` file, but there *is* a `.gitignore` file, then npm will ignore the stuff matched by the `.gitignore` file.
If you *want* to include something that is excluded by your `.gitignore` file, you can create an empty `.npmignore` file to override it.
Like `git`, `npm` looks for `.npmignore` and `.gitignore` files in all subdirectories of your package, not only the root directory.

`.npmignore` files follow the [same pattern rules](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring) as `.gitignore` files:

* Blank lines or lines starting with `#` are ignored.
* Standard glob patterns work.
* You can end patterns with a forward slash `/` to specify a directory.
* You can negate a pattern by starting it with an exclamation point `!`.

By default, some paths and files are ignored, so there's no need to add them to `.npmignore` explicitly.
Some examples are:

* `.*.swp`
* `._*`
* `.DS_Store`
* `.git`
* `.gitignore`
* `.hg`
* `.npmignore`
* `.npmrc`
* `.lock-wscript`
* `.svn`
* `.wafpickle-*`
* `config.gypi`
* `CVS`
* `npm-debug.log`

Additionally, everything in `node_modules` is ignored, except for bundled dependencies.
npm automatically handles this for you, so don't bother adding `node_modules` to `.npmignore`.

The following paths and files are never ignored, so adding them to `.npmignore` is pointless:

* `package.json`
* `README` (and its variants)
* `LICENSE` / `LICENCE`

If, given the structure of your project, you find `.npmignore` to be a maintenance headache, you might instead try populating the `files` property of `package.json`, which is an array of file or directory names that should be included in your package.
Sometimes manually picking which items to allow is easier to manage than building a block list.

See [`package.json`](/configuring-npm/package-json) for more info on what can and can't be ignored.

#### Testing whether your `.npmignore` or `files` config works

If you want to double check that your package will include only the files you intend it to when published, you can run the `npm pack` command locally which will generate a tarball in the working directory, the same way it does for publishing.

### Link Packages

`npm link` 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 `npm rebuild -g` to update compiled packages, of course.)

More info at [`npm link`](/commands/npm-link).

### Before Publishing: Make Sure Your Package Installs and Works

**This is important.**

If you cannot 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.

In the root of your package, do this:

```bash

npm install . -g

```

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:

```bash

npm link

```

Use `npm ls -g` to see if it's there.

To test a local install, go into some other folder, and then do:

```bash

cd ../some-other-folder

npm install ../my-package

```

to install it locally into the node_modules folder in that other place.



Then go into the node-repl, and try using require("my-thing") to bring in your module's main module.



### Create a User Account



Create a user with the adduser command.

It works like this:



```bash

npm adduser

```



and then follow the prompts.



This is documented better in [npm adduser](/commands/npm-adduser).



### Publish your Package



This part's easy.

In the root of your folder, do this:



```bash

npm publish

```



You can give publish a url to a tarball, or a filename of a tarball, or a path to a folder.



Note that pretty much **everything in that folder will be exposed** by default.

So, if you have secret stuff in there, use a `.npmignore` file to list out the globs to ignore, or publish from a fresh checkout.



### Brag about it



Send emails, write blogs, blab in IRC.



Tell the world how easy it is to install your program!



### See also



* [npm](/commands/npm)

* [npm init](/commands/npm-init)

* [package.json](/configuring-npm/package-json)

* [npm scripts](/using-npm/scripts)

* [npm publish](/commands/npm-publish)

* [npm adduser](/commands/npm-adduser)

* [npm registry](/using-npm/registry)