www.LinuxHowtos.org
NPM\-DEVELOPERS
Section: (7)Updated: December 2016
Index Return to Main Contents
NAME
npm-developers - Developer GuideDESCRIPTION
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).
-
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 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 npm help 5 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 npm help 7 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.
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-Files 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 !.
-
- *
- .*.swp
- *
- ._*
- *
- .DS_Store
- *
- .git
- *
- .hg
- *
- .npmrc
- *
- .lock-wscript
- *
- .svn
- *
- .wafpickle-*
- *
- config.gypi
- *
- CVS
- *
-
npm-debug.log
-
- *
- package.json
- *
- README (and its variants)
- *
- CHANGELOG (and its variants)
- *
-
LICENSE / LICENCE
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 help npm-link.Before Publishing: Make Sure Your Package Installs and Works
This is important. 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. In the root of your package, do this:-
npm install . -g
-
npm link
-
cd ../some-other-folder npm install ../my-package
Create a User Account
Create a user with the adduser command. It works like this:-
npm adduser
Publish your package
This part's easy. In the root of your folder, do this:-
npm publish
Brag about it
Send emails, write blogs, blab in IRC. Tell the world how easy it is to install your program!SEE ALSO
-
- *
- npm help npm
- *
- npm help init
- *
- npm help 5 package.json
- *
- npm help 7 scripts
- *
- npm help publish
- *
- npm help adduser
- *
-
npm help 7 registry