.\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . .TH "NPM" "1" "August 2014" "" "" . .SH "NAME" \fBnpm\fR \- node package manager . .P Build Status \fIhttps://travis\-ci\.org/npm/npm\fR . .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\.8 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)" There\'s a pretty robust install script at \fIhttps://www\.npmjs\.org/install\.sh\fR\. You can download that and run it\. . .P Here\'s an example using curl: . .IP "" 4 . .nf curl \-L https://npmjs\.org/install\.sh | sh . .fi . .IP "" 0 . .SS "Slightly Fancier" You can set any npm configuration params with that script: . .IP "" 4 . .nf npm_config_prefix=/some/path sh install\.sh . .fi . .IP "" 0 . .P Or, you can run it in uber\-debuggery mode: . .IP "" 4 . .nf npm_debug=1 sh install\.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 \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 \fIhttps://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 "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\. . .P Most of the time, unless you actually want to do all the things that npm does, you should try using one of npm\'s dependencies rather than using npm itself, if possible\. . .P Eventually, npm will be just a thin cli wrapper around the modules that it depends on, but for now, there are some things that you must use npm itself to do\. . .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\.\fR functions take an \fBarray\fR of positional argument \fBstrings\fR\. The last argument to any \fBnpm\.commands\.\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 \fIhttps://www\.npmjs\.org/doc/\fR, especially the faq \fIhttps://www\.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 \fIhttps://www\.npmjs\.org/doc/developers\.html\fR . .SH "Legal Stuff" "npm" and "The npm Registry" are owned by npm, Inc\. All rights reserved\. See the included LICENSE file for more details\. . .P "Node\.js" and "node" are trademarks owned by Joyent, Inc\. . .P Modules published on the npm registry are not officially endorsed by npm, Inc\. or the Node\.js project\. . .P Data published to the npm registry is not part of npm itself, and is the sole property of the publisher\. While every effort is made to ensure accountability, there is absolutely no guarantee, warrantee, or assertion expressed or implied as to the quality, fitness for a specific purpose, or lack of malice in any given npm package\. . .P If you have a complaint about a package in the public npm registry, and cannot resolve it with the package owner \fIhttps://www\.npmjs\.org/doc/misc/npm\-disputes\.html\fR, please email \fIsupport@npmjs\.com\fR and explain the situation\. . .P Any data published to The npm Registry (including user account information) may be removed or modified at the sole discretion of the npm server administrators\. . .SS "In plainer english" npm is the property of npm, Inc\. . .P If you publish something, it\'s yours, and you are solely accountable for it\. . .P If other people publish something, it\'s theirs\. . .P Users can publish Bad Stuff\. It will be removed promptly if reported\. But there is no vetting process for published modules, and you use them at your own risk\. Please inspect the source\. . .P If you publish Bad Stuff, we may delete it from the registry, or even ban your account in extreme cases\. So don\'t do that\. . .SH "BUGS" When you find issues, please report them: . .TP web \fIhttps://github\.com/npm/npm/issues\fR . .TP email \fInpm\-@googlegroups\.com\fR . .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