cb4002050b711b5dda00ca8dd02751ac2c852018
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-install.html
1 <!doctype html>
2 <html>
3   <title>npm-install</title>
4   <meta http-equiv="content-type" value="text/html;utf-8">
5   <link rel="stylesheet" type="text/css" href="../../static/style.css">
6
7   <body>
8     <div id="wrapper">
9 <h1><a href="../cli/npm-install.html">npm-install</a></h1> <p>Install a package</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm install (with no args in a package dir)
14 npm install &lt;tarball file&gt;
15 npm install &lt;tarball url&gt;
16 npm install &lt;folder&gt;
17 npm install &lt;name&gt; [--save|--save-dev|--save-optional]
18 npm install &lt;name&gt;@&lt;tag&gt;
19 npm install &lt;name&gt;@&lt;version&gt;
20 npm install &lt;name&gt;@&lt;version range&gt;
21 npm i (with any of the previous argument usage)</code></pre>
22
23 <h2 id="DESCRIPTION">DESCRIPTION</h2>
24
25 <p>This command installs a package, and any packages that it depends on. If the
26 package has a shrinkwrap file, the installation of dependencies will be driven
27 by that. See <a href="../cli/npm-shrinkwrap.html">npm-shrinkwrap(1)</a>.</p>
28
29 <p>A <code>package</code> is:</p>
30
31 <ul><li>a) a folder containing a program described by a package.json file</li><li>b) a gzipped tarball containing (a)</li><li>c) a url that resolves to (b)</li><li>d) a <code>&lt;name&gt;@&lt;version&gt;</code> that is published on the registry with (c)</li><li>e) a <code>&lt;name&gt;@&lt;tag&gt;</code> that points to (d)</li><li>f) a <code>&lt;name&gt;</code> that has a &quot;latest&quot; tag satisfying (e)</li><li>g) a <code>&lt;git remote url&gt;</code> that resolves to (b)</li></ul>
32
33 <p>Even if you never publish your package, you can still get a lot of
34 benefits of using npm if you just want to write a node program (a), and
35 perhaps if you also want to be able to easily install it elsewhere
36 after packing it up into a tarball (b).</p>
37
38 <ul><li><p><code>npm install</code> (in package directory, no arguments):</p><p>Install the dependencies in the local node_modules folder.</p><p>In global mode (ie, with <code>-g</code> or <code>--global</code> appended to the command),
39 it installs the current package context (ie, the current working
40 directory) as a global package.</p><p>By default, <code>npm install</code> will install all modules listed as
41 dependencies. With the <code>--production</code> flag,
42 npm will not install modules listed in <code>devDependencies</code>.</p></li><li><p><code>npm install &lt;folder&gt;</code>:</p><p>Install a package that is sitting in a folder on the filesystem.</p></li><li><p><code>npm install &lt;tarball file&gt;</code>:</p><p>Install a package that is sitting on the filesystem.  Note: if you just want
43 to link a dev directory into your npm root, you can do this more easily by
44 using <code>npm link</code>.</p><p>Example:</p><pre><code>  npm install ./package.tgz</code></pre></li><li><p><code>npm install &lt;tarball url&gt;</code>:</p><p>Fetch the tarball url, and then install it.  In order to distinguish between
45 this and other options, the argument must start with &quot;http://&quot; or &quot;https://&quot;</p><p>Example:</p><pre><code>  npm install https://github.com/indexzero/forever/tarball/v0.5.6</code></pre></li><li><p><code>npm install &lt;name&gt; [--save|--save-dev|--save-optional]</code>:</p><p>Do a <code>&lt;name&gt;@&lt;tag&gt;</code> install, where <code>&lt;tag&gt;</code> is the &quot;tag&quot; config. (See
46 <code><a href="../misc/npm-config.html">npm-config(7)</a></code>.)</p><p>In most cases, this will install the latest version
47 of the module published on npm.</p><p>Example:</p><p>      npm install sax</p><p><code>npm install</code> takes 3 exclusive, optional flags which save or update
48 the package version in your main package.json:</p><ul><li><p><code>--save</code>: Package will appear in your <code>dependencies</code>.</p></li><li><p><code>--save-dev</code>: Package will appear in your <code>devDependencies</code>.</p></li><li><p><code>--save-optional</code>: Package will appear in your <code>optionalDependencies</code>.</p><p>Examples:</p><p>  npm install sax --save
49   npm install node-tap --save-dev
50   npm install dtrace-provider --save-optional</p><p><strong>Note</strong>: If there is a file or folder named <code>&lt;name&gt;</code> in the current
51 working directory, then it will try to install that, and only try to
52 fetch the package by name if it is not valid.</p></li></ul></li><li><p><code>npm install &lt;name&gt;@&lt;tag&gt;</code>:</p><p>Install the version of the package that is referenced by the specified tag.
53 If the tag does not exist in the registry data for that package, then this
54 will fail.</p><p>Example:</p><pre><code>  npm install sax@latest</code></pre></li><li><p><code>npm install &lt;name&gt;@&lt;version&gt;</code>:</p><p>Install the specified version of the package.  This will fail if the version
55 has not been published to the registry.</p><p>Example:</p><pre><code>  npm install sax@0.1.1</code></pre></li><li><p><code>npm install &lt;name&gt;@&lt;version range&gt;</code>:</p><p>Install a version of the package matching the specified version range.  This
56 will follow the same rules for resolving dependencies described in <code><a href="../files/package.json.html">package.json(5)</a></code>.</p><p>Note that most version ranges must be put in quotes so that your shell will
57 treat it as a single argument.</p><p>Example:</p><p>      npm install sax@&quot;&gt;=0.1.0 &lt;0.2.0&quot;</p></li><li><p><code>npm install &lt;git remote url&gt;</code>:</p><p>Install a package by cloning a git remote url.  The format of the git
58 url is:</p><p>      &lt;protocol&gt;://[&lt;user&gt;@]&lt;hostname&gt;&lt;separator&gt;&lt;path&gt;[#&lt;commit-ish&gt;]</p><p><code>&lt;protocol&gt;</code> is one of <code>git</code>, <code>git+ssh</code>, <code>git+http</code>, or
59 <code>git+https</code>.  If no <code>&lt;commit-ish&gt;</code> is specified, then <code>master</code> is
60 used.</p><p>Examples:</p><pre><code>  git+ssh://git@github.com:isaacs/npm.git#v1.0.27
61   git+https://isaacs@github.com/isaacs/npm.git
62   git://github.com/isaacs/npm.git#v1.0.27</code></pre></li></ul>
63
64 <p>You may combine multiple arguments, and even multiple types of arguments.
65 For example:</p>
66
67 <pre><code>npm install sax@&quot;&gt;=0.1.0 &lt;0.2.0&quot; bench supervisor</code></pre>
68
69 <p>The <code>--tag</code> argument will apply to all of the specified install targets. If a
70 tag with the given name exists, the tagged version is preferred over newer
71 versions.</p>
72
73 <p>The <code>--force</code> argument will force npm to fetch remote resources even if a
74 local copy exists on disk.</p>
75
76 <pre><code>npm install sax --force</code></pre>
77
78 <p>The <code>--global</code> argument will cause npm to install the package globally
79 rather than locally.  See <code><a href="../files/npm-folders.html">npm-folders(5)</a></code>.</p>
80
81 <p>The <code>--link</code> argument will cause npm to link global installs into the
82 local space in some cases.</p>
83
84 <p>The <code>--no-bin-links</code> argument will prevent npm from creating symlinks for
85 any binaries the package might contain.</p>
86
87 <p>The <code>--no-shrinkwrap</code> argument, which will ignore an available
88 shrinkwrap file and use the package.json instead.</p>
89
90 <p>The <code>--nodedir=/path/to/node/source</code> argument will allow npm to find the
91 node source code so that npm can compile native modules.</p>
92
93 <p>See <code><a href="../misc/npm-config.html">npm-config(7)</a></code>.  Many of the configuration params have some
94 effect on installation, since that&#39;s most of what npm does.</p>
95
96 <h2 id="ALGORITHM">ALGORITHM</h2>
97
98 <p>To install a package, npm uses the following algorithm:</p>
99
100 <pre><code>install(where, what, family, ancestors)
101 fetch what, unpack to &lt;where&gt;/node_modules/&lt;what&gt;
102 for each dep in what.dependencies
103   resolve dep to precise version
104 for each dep@version in what.dependencies
105     not in &lt;where&gt;/node_modules/&lt;what&gt;/node_modules/*
106     and not in &lt;family&gt;
107   add precise version deps to &lt;family&gt;
108   install(&lt;where&gt;/node_modules/&lt;what&gt;, dep, family)</code></pre>
109
110 <p>For this <code>package{dep}</code> structure: <code>A{B,C}, B{C}, C{D}</code>,
111 this algorithm produces:</p>
112
113 <pre><code>A
114 +-- B
115 `-- C
116     `-- D</code></pre>
117
118 <p>That is, the dependency from B to C is satisfied by the fact that A
119 already caused C to be installed at a higher level.</p>
120
121 <p>See <a href="../files/npm-folders.html">npm-folders(5)</a> for a more detailed description of the specific
122 folder structures that npm creates.</p>
123
124 <h3 id="Limitations-of-npm-s-Install-Algorithm">Limitations of npm&#39;s Install Algorithm</h3>
125
126 <p>There are some very rare and pathological edge-cases where a cycle can
127 cause npm to try to install a never-ending tree of packages.  Here is
128 the simplest case:</p>
129
130 <pre><code>A -&gt; B -&gt; A&#39; -&gt; B&#39; -&gt; A -&gt; B -&gt; A&#39; -&gt; B&#39; -&gt; A -&gt; ...</code></pre>
131
132 <p>where <code>A</code> is some version of a package, and <code>A&#39;</code> is a different version
133 of the same package.  Because <code>B</code> depends on a different version of <code>A</code>
134 than the one that is already in the tree, it must install a separate
135 copy.  The same is true of <code>A&#39;</code>, which must install <code>B&#39;</code>.  Because <code>B&#39;</code>
136 depends on the original version of <code>A</code>, which has been overridden, the
137 cycle falls into infinite regress.</p>
138
139 <p>To avoid this situation, npm flat-out refuses to install any
140 <code>name@version</code> that is already present anywhere in the tree of package
141 folder ancestors.  A more correct, but more complex, solution would be
142 to symlink the existing version into the new location.  If this ever
143 affects a real use-case, it will be investigated.</p>
144
145 <h2 id="SEE-ALSO">SEE ALSO</h2>
146
147 <ul><li><a href="../files/npm-folders.html">npm-folders(5)</a></li><li><a href="../cli/npm-update.html">npm-update(1)</a></li><li><a href="../cli/npm-link.html">npm-link(1)</a></li><li><a href="../cli/npm-rebuild.html">npm-rebuild(1)</a></li><li><a href="../misc/npm-scripts.html">npm-scripts(7)</a></li><li><a href="../cli/npm-build.html">npm-build(1)</a></li><li><a href="../cli/npm-config.html">npm-config(1)</a></li><li><a href="../misc/npm-config.html">npm-config(7)</a></li><li><a href="../files/npmrc.html">npmrc(5)</a></li><li><a href="../misc/npm-registry.html">npm-registry(7)</a></li><li><a href="../files/npm-folders.html">npm-folders(5)</a></li><li><a href="../cli/npm-tag.html">npm-tag(1)</a></li><li><a href="../cli/npm-rm.html">npm-rm(1)</a></li><li><a href="../cli/npm-shrinkwrap.html">npm-shrinkwrap(1)</a></li></ul>
148 </div>
149 <p id="footer">npm-install &mdash; npm@1.3.15</p>
150 <script>
151 ;(function () {
152 var wrapper = document.getElementById("wrapper")
153 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
154   .filter(function (el) {
155     return el.parentNode === wrapper
156         && el.tagName.match(/H[1-6]/)
157         && el.id
158   })
159 var l = 2
160   , toc = document.createElement("ul")
161 toc.innerHTML = els.map(function (el) {
162   var i = el.tagName.charAt(1)
163     , out = ""
164   while (i > l) {
165     out += "<ul>"
166     l ++
167   }
168   while (i < l) {
169     out += "</ul>"
170     l --
171   }
172   out += "<li><a href='#" + el.id + "'>" +
173     ( el.innerText || el.text || el.innerHTML)
174     + "</a>"
175   return out
176 }).join("\n")
177 toc.id = "toc"
178 document.body.appendChild(toc)
179 })()
180 </script>