Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

374 lines
24 KiB

  1. <!doctype html>
  2. <html>
  3. <title>npm-install</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="../../static/style.css">
  6. <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-install.html">
  7. <script async=true src="../../static/toc.js"></script>
  8. <body>
  9. <div id="wrapper">
  10. <h1><a href="../cli/npm-install.html">npm-install</a></h1> <p>Install a package</p>
  11. <h2 id="synopsis">SYNOPSIS</h2>
  12. <pre><code>npm install (with no args, in package dir)
  13. npm install [&lt;@scope&gt;/]&lt;name&gt;
  14. npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;tag&gt;
  15. npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;version&gt;
  16. npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;version range&gt;
  17. npm install &lt;git-host&gt;:&lt;git-user&gt;/&lt;repo-name&gt;
  18. npm install &lt;git repo url&gt;
  19. npm install &lt;tarball file&gt;
  20. npm install &lt;tarball url&gt;
  21. npm install &lt;folder&gt;
  22. alias: npm i
  23. common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional] [-E|--save-exact] [-B|--save-bundle] [--no-save] [--dry-run]</code></pre><h2 id="description">DESCRIPTION</h2>
  24. <p>This command installs a package, and any packages that it depends on. If the
  25. package has a package-lock or shrinkwrap file, the installation of dependencies
  26. will be driven by that, with an <code>npm-shrinkwrap.json</code> taking precedence if both
  27. files exist. See <a href="../files/package-lock.json.html">package-lock.json(5)</a> and <a href="../cli/npm-shrinkwrap.html">npm-shrinkwrap(1)</a>.</p>
  28. <p>A <code>package</code> is:</p>
  29. <ul>
  30. <li>a) a folder containing a program described by a <code><a href="../files/package.json.html">package.json(5)</a></code> file</li>
  31. <li>b) a gzipped tarball containing (a)</li>
  32. <li>c) a url that resolves to (b)</li>
  33. <li>d) a <code>&lt;name&gt;@&lt;version&gt;</code> that is published on the registry (see <code><a href="../misc/npm-registry.html">npm-registry(7)</a></code>) with (c)</li>
  34. <li>e) a <code>&lt;name&gt;@&lt;tag&gt;</code> (see <code><a href="../cli/npm-dist-tag.html">npm-dist-tag(1)</a></code>) that points to (d)</li>
  35. <li>f) a <code>&lt;name&gt;</code> that has a &quot;latest&quot; tag satisfying (e)</li>
  36. <li>g) a <code>&lt;git remote url&gt;</code> that resolves to (a)</li>
  37. </ul>
  38. <p>Even if you never publish your package, you can still get a lot of
  39. benefits of using npm if you just want to write a node program (a), and
  40. perhaps if you also want to be able to easily install it elsewhere
  41. after packing it up into a tarball (b).</p>
  42. <ul>
  43. <li><p><code>npm install</code> (in package directory, no arguments):</p>
  44. <p> Install the dependencies in the local node_modules folder.</p>
  45. <p> In global mode (ie, with <code>-g</code> or <code>--global</code> appended to the command),
  46. it installs the current package context (ie, the current working
  47. directory) as a global package.</p>
  48. <p> By default, <code>npm install</code> will install all modules listed as dependencies
  49. in <code><a href="../files/package.json.html">package.json(5)</a></code>.</p>
  50. <p> With the <code>--production</code> flag (or when the <code>NODE_ENV</code> environment variable
  51. is set to <code>production</code>), npm will not install modules listed in
  52. <code>devDependencies</code>.</p>
  53. <blockquote>
  54. <p>NOTE: The <code>--production</code> flag has no particular meaning when adding a
  55. dependency to a project.</p>
  56. </blockquote>
  57. </li>
  58. <li><p><code>npm install &lt;folder&gt;</code>:</p>
  59. <p> Install the package in the directory as a symlink in the current project.
  60. Its dependencies will be installed before it&#39;s linked. If <code>&lt;folder&gt;</code> sits
  61. inside the root of your project, its dependencies may be hoisted to the
  62. toplevel <code>node_modules</code> as they would for other types of dependencies.</p>
  63. </li>
  64. <li><p><code>npm install &lt;tarball file&gt;</code>:</p>
  65. <p> Install a package that is sitting on the filesystem. Note: if you just want
  66. to link a dev directory into your npm root, you can do this more easily by
  67. using <code>npm link</code>.</p>
  68. <p> Tarball requirements:</p>
  69. <ul>
  70. <li><p>The filename <em>must</em> use <code>.tar</code>, <code>.tar.gz</code>, or <code>.tgz</code> as
  71. the extension.</p>
  72. </li>
  73. <li><p>The package contents should reside in a subfolder inside the tarball (usually it is called <code>package/</code>). npm strips one directory layer when installing the package (an equivalent of <code>tar x --strip-components=1</code> is run).</p>
  74. </li>
  75. <li><p>The package must contain a <code>package.json</code> file with <code>name</code> and <code>version</code> properties.</p>
  76. <p>Example:</p>
  77. <pre><code>npm install ./package.tgz</code></pre></li>
  78. </ul>
  79. </li>
  80. <li><p><code>npm install &lt;tarball url&gt;</code>:</p>
  81. <p> Fetch the tarball url, and then install it. In order to distinguish between
  82. this and other options, the argument must start with &quot;http://&quot; or &quot;https://&quot;</p>
  83. <p> Example:</p>
  84. <pre><code> npm install https://github.com/indexzero/forever/tarball/v0.5.6</code></pre></li>
  85. <li><p><code>npm install [&lt;@scope&gt;/]&lt;name&gt;</code>:</p>
  86. <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
  87. <code><a href="../misc/npm-config.html">npm-config(7)</a></code>. The config&#39;s default value is <code>latest</code>.)</p>
  88. <p> In most cases, this will install the version of the modules tagged as
  89. <code>latest</code> on the npm registry.</p>
  90. <p> Example:</p>
  91. <pre><code> npm install sax</code></pre><p> <code>npm install</code> saves any specified packages into <code>dependencies</code> by default.
  92. Additionally, you can control where and how they get saved with some
  93. additional flags:</p>
  94. <ul>
  95. <li><p><code>-P, --save-prod</code>: Package will appear in your <code>dependencies</code>. This is the</p>
  96. <pre><code> default unless `-D` or `-O` are present.</code></pre></li>
  97. <li><p><code>-D, --save-dev</code>: Package will appear in your <code>devDependencies</code>.</p>
  98. </li>
  99. <li><p><code>-O, --save-optional</code>: Package will appear in your <code>optionalDependencies</code>.</p>
  100. </li>
  101. <li><p><code>--no-save</code>: Prevents saving to <code>dependencies</code>.</p>
  102. <p>When using any of the above options to save dependencies to your
  103. package.json, there are two additional, optional flags:</p>
  104. </li>
  105. <li><p><code>-E, --save-exact</code>: Saved dependencies will be configured with an
  106. exact version rather than using npm&#39;s default semver range
  107. operator.</p>
  108. </li>
  109. <li><p><code>-B, --save-bundle</code>: Saved dependencies will also be added to your <code>bundleDependencies</code> list.</p>
  110. <p>Further, if you have an <code>npm-shrinkwrap.json</code> or <code>package-lock.json</code> then it
  111. will be updated as well.</p>
  112. <p><code>&lt;scope&gt;</code> is optional. The package will be downloaded from the registry
  113. associated with the specified scope. If no registry is associated with
  114. the given scope the default registry is assumed. See <code><a href="../misc/npm-scope.html">npm-scope(7)</a></code>.</p>
  115. <p>Note: if you do not include the @-symbol on your scope name, npm will
  116. interpret this as a GitHub repository instead, see below. Scopes names
  117. must also be followed by a slash.</p>
  118. <p>Examples:</p>
  119. <pre><code>npm install sax
  120. npm install githubname/reponame
  121. npm install @myorg/privatepackage
  122. npm install node-tap --save-dev
  123. npm install dtrace-provider --save-optional
  124. npm install readable-stream --save-exact
  125. npm install ansi-regex --save-bundle</code></pre></li>
  126. </ul>
  127. </li>
  128. </ul>
  129. <pre><code>**Note**: If there is a file or folder named `&lt;name&gt;` in the current
  130. working directory, then it will try to install that, and only try to
  131. fetch the package by name if it is not valid.</code></pre><ul>
  132. <li><p><code>npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;tag&gt;</code>:</p>
  133. <p> Install the version of the package that is referenced by the specified tag.
  134. If the tag does not exist in the registry data for that package, then this
  135. will fail.</p>
  136. <p> Example:</p>
  137. <pre><code> npm install sax@latest
  138. npm install @myorg/mypackage@latest</code></pre></li>
  139. <li><p><code>npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;version&gt;</code>:</p>
  140. <p> Install the specified version of the package. This will fail if the
  141. version has not been published to the registry.</p>
  142. <p> Example:</p>
  143. <pre><code> npm install sax@0.1.1
  144. npm install @myorg/privatepackage@1.5.0</code></pre></li>
  145. <li><p><code>npm install [&lt;@scope&gt;/]&lt;name&gt;@&lt;version range&gt;</code>:</p>
  146. <p> Install a version of the package matching the specified version range. This
  147. will follow the same rules for resolving dependencies described in <code><a href="../files/package.json.html">package.json(5)</a></code>.</p>
  148. <p> Note that most version ranges must be put in quotes so that your shell will
  149. treat it as a single argument.</p>
  150. <p> Example:</p>
  151. <pre><code> npm install sax@&quot;&gt;=0.1.0 &lt;0.2.0&quot;
  152. npm install @myorg/privatepackage@&quot;&gt;=0.1.0 &lt;0.2.0&quot;</code></pre></li>
  153. <li><p><code>npm install &lt;git remote url&gt;</code>:</p>
  154. <p> Installs the package from the hosted git provider, cloning it with <code>git</code>.
  155. For a full git remote url, only that URL will be attempted.</p>
  156. <pre><code> &lt;protocol&gt;://[&lt;user&gt;[:&lt;password&gt;]@]&lt;hostname&gt;[:&lt;port&gt;][:][/]&lt;path&gt;[#&lt;commit-ish&gt; | #semver:&lt;semver&gt;]</code></pre><p> <code>&lt;protocol&gt;</code> is one of <code>git</code>, <code>git+ssh</code>, <code>git+http</code>, <code>git+https</code>, or
  157. <code>git+file</code>.</p>
  158. <p> If <code>#&lt;commit-ish&gt;</code> is provided, it will be used to clone exactly that
  159. commit. If the commit-ish has the format <code>#semver:&lt;semver&gt;</code>, <code>&lt;semver&gt;</code> can
  160. be any valid semver range or exact version, and npm will look for any tags
  161. or refs matching that range in the remote repository, much as it would for a
  162. registry dependency. If neither <code>#&lt;commit-ish&gt;</code> or <code>#semver:&lt;semver&gt;</code> is
  163. specified, then <code>master</code> is used.</p>
  164. <p> If the repository makes use of submodules, those submodules will be cloned
  165. as well.</p>
  166. <p> If the package being installed contains a <code>prepare</code> script, its
  167. <code>dependencies</code> and <code>devDependencies</code> will be installed, and the prepare
  168. script will be run, before the package is packaged and installed.</p>
  169. <p> The following git environment variables are recognized by npm and will be
  170. added to the environment when running git:</p>
  171. <ul>
  172. <li><p><code>GIT_ASKPASS</code></p>
  173. </li>
  174. <li><p><code>GIT_EXEC_PATH</code></p>
  175. </li>
  176. <li><p><code>GIT_PROXY_COMMAND</code></p>
  177. </li>
  178. <li><p><code>GIT_SSH</code></p>
  179. </li>
  180. <li><p><code>GIT_SSH_COMMAND</code></p>
  181. </li>
  182. <li><p><code>GIT_SSL_CAINFO</code></p>
  183. </li>
  184. <li><p><code>GIT_SSL_NO_VERIFY</code></p>
  185. <p>See the git man page for details.</p>
  186. <p>Examples:</p>
  187. <pre><code>npm install git+ssh://git@github.com:npm/cli.git#v1.0.27
  188. npm install git+ssh://git@github.com:npm/cli#semver:^5.0
  189. npm install git+https://isaacs@github.com/npm/cli.git
  190. npm install git://github.com/npm/cli.git#v1.0.27
  191. GIT_SSH_COMMAND=&#39;ssh -i ~/.ssh/custom_ident&#39; npm install git+ssh://git@github.com:npm/cli.git</code></pre></li>
  192. </ul>
  193. </li>
  194. <li><p><code>npm install &lt;githubname&gt;/&lt;githubrepo&gt;[#&lt;commit-ish&gt;]</code>:</p>
  195. </li>
  196. <li><p><code>npm install github:&lt;githubname&gt;/&lt;githubrepo&gt;[#&lt;commit-ish&gt;]</code>:</p>
  197. <p> Install the package at <code>https://github.com/githubname/githubrepo</code> by
  198. attempting to clone it using <code>git</code>.</p>
  199. <p> If <code>#&lt;commit-ish&gt;</code> is provided, it will be used to clone exactly that
  200. commit. If the commit-ish has the format <code>#semver:&lt;semver&gt;</code>, <code>&lt;semver&gt;</code> can
  201. be any valid semver range or exact version, and npm will look for any tags
  202. or refs matching that range in the remote repository, much as it would for a
  203. registry dependency. If neither <code>#&lt;commit-ish&gt;</code> or <code>#semver:&lt;semver&gt;</code> is
  204. specified, then <code>master</code> is used.</p>
  205. <p> As with regular git dependencies, <code>dependencies</code> and <code>devDependencies</code> will
  206. be installed if the package has a <code>prepare</code> script, before the package is
  207. done installing.</p>
  208. <p> Examples:</p>
  209. <pre><code> npm install mygithubuser/myproject
  210. npm install github:mygithubuser/myproject</code></pre></li>
  211. <li><p><code>npm install gist:[&lt;githubname&gt;/]&lt;gistID&gt;[#&lt;commit-ish&gt;|#semver:&lt;semver&gt;]</code>:</p>
  212. <p> Install the package at <code>https://gist.github.com/gistID</code> by attempting to
  213. clone it using <code>git</code>. The GitHub username associated with the gist is
  214. optional and will not be saved in <code>package.json</code>.</p>
  215. <p> As with regular git dependencies, <code>dependencies</code> and <code>devDependencies</code> will
  216. be installed if the package has a <code>prepare</code> script, before the package is
  217. done installing.</p>
  218. <p> Example:</p>
  219. <pre><code> npm install gist:101a11beef</code></pre></li>
  220. <li><p><code>npm install bitbucket:&lt;bitbucketname&gt;/&lt;bitbucketrepo&gt;[#&lt;commit-ish&gt;]</code>:</p>
  221. <p> Install the package at <code>https://bitbucket.org/bitbucketname/bitbucketrepo</code>
  222. by attempting to clone it using <code>git</code>.</p>
  223. <p> If <code>#&lt;commit-ish&gt;</code> is provided, it will be used to clone exactly that
  224. commit. If the commit-ish has the format <code>#semver:&lt;semver&gt;</code>, <code>&lt;semver&gt;</code> can
  225. be any valid semver range or exact version, and npm will look for any tags
  226. or refs matching that range in the remote repository, much as it would for a
  227. registry dependency. If neither <code>#&lt;commit-ish&gt;</code> or <code>#semver:&lt;semver&gt;</code> is
  228. specified, then <code>master</code> is used.</p>
  229. <p> As with regular git dependencies, <code>dependencies</code> and <code>devDependencies</code> will
  230. be installed if the package has a <code>prepare</code> script, before the package is
  231. done installing.</p>
  232. <p> Example:</p>
  233. <pre><code> npm install bitbucket:mybitbucketuser/myproject</code></pre></li>
  234. <li><p><code>npm install gitlab:&lt;gitlabname&gt;/&lt;gitlabrepo&gt;[#&lt;commit-ish&gt;]</code>:</p>
  235. <p> Install the package at <code>https://gitlab.com/gitlabname/gitlabrepo</code>
  236. by attempting to clone it using <code>git</code>.</p>
  237. <p> If <code>#&lt;commit-ish&gt;</code> is provided, it will be used to clone exactly that
  238. commit. If the commit-ish has the format <code>#semver:&lt;semver&gt;</code>, <code>&lt;semver&gt;</code> can
  239. be any valid semver range or exact version, and npm will look for any tags
  240. or refs matching that range in the remote repository, much as it would for a
  241. registry dependency. If neither <code>#&lt;commit-ish&gt;</code> or <code>#semver:&lt;semver&gt;</code> is
  242. specified, then <code>master</code> is used.</p>
  243. <p> As with regular git dependencies, <code>dependencies</code> and <code>devDependencies</code> will
  244. be installed if the package has a <code>prepare</code> script, before the package is
  245. done installing.</p>
  246. <p> Example:</p>
  247. <pre><code> npm install gitlab:mygitlabuser/myproject
  248. npm install gitlab:myusr/myproj#semver:^5.0</code></pre></li>
  249. </ul>
  250. <p>You may combine multiple arguments, and even multiple types of arguments.
  251. For example:</p>
  252. <pre><code>npm install sax@&quot;&gt;=0.1.0 &lt;0.2.0&quot; bench supervisor</code></pre><p>The <code>--tag</code> argument will apply to all of the specified install targets. If a
  253. tag with the given name exists, the tagged version is preferred over newer
  254. versions.</p>
  255. <p>The <code>--dry-run</code> argument will report in the usual way what the install would
  256. have done without actually installing anything.</p>
  257. <p>The <code>--package-lock-only</code> argument will only update the <code>package-lock.json</code>,
  258. instead of checking <code>node_modules</code> and downloading dependencies.</p>
  259. <p>The <code>-f</code> or <code>--force</code> argument will force npm to fetch remote resources even if a
  260. local copy exists on disk.</p>
  261. <pre><code>npm install sax --force</code></pre><p>The <code>-g</code> or <code>--global</code> argument will cause npm to install the package globally
  262. rather than locally. See <code><a href="../files/npm-folders.html">npm-folders(5)</a></code>.</p>
  263. <p>The <code>--global-style</code> argument will cause npm to install the package into
  264. your local <code>node_modules</code> folder with the same layout it uses with the
  265. global <code>node_modules</code> folder. Only your direct dependencies will show in
  266. <code>node_modules</code> and everything they depend on will be flattened in their
  267. <code>node_modules</code> folders. This obviously will eliminate some deduping.</p>
  268. <p>The <code>--ignore-scripts</code> argument will cause npm to not execute any
  269. scripts defined in the package.json. See <code><a href="../misc/npm-scripts.html">npm-scripts(7)</a></code>.</p>
  270. <p>The <code>--legacy-bundling</code> argument will cause npm to install the package such
  271. that versions of npm prior to 1.4, such as the one included with node 0.8,
  272. can install the package. This eliminates all automatic deduping.</p>
  273. <p>The <code>--link</code> argument will cause npm to link global installs into the
  274. local space in some cases.</p>
  275. <p>The <code>--no-bin-links</code> argument will prevent npm from creating symlinks for
  276. any binaries the package might contain.</p>
  277. <p>The <code>--no-optional</code> argument will prevent optional dependencies from
  278. being installed.</p>
  279. <p>The <code>--no-shrinkwrap</code> argument, which will ignore an available
  280. package lock or shrinkwrap file and use the package.json instead.</p>
  281. <p>The <code>--no-package-lock</code> argument will prevent npm from creating a
  282. <code>package-lock.json</code> file. When running with package-lock&#39;s disabled npm
  283. will not automatically prune your node modules when installing.</p>
  284. <p>The <code>--nodedir=/path/to/node/source</code> argument will allow npm to find the
  285. node source code so that npm can compile native modules.</p>
  286. <p>The <code>--only={prod[uction]|dev[elopment]}</code> argument will cause either only
  287. <code>devDependencies</code> or only non-<code>devDependencies</code> to be installed regardless of the <code>NODE_ENV</code>.</p>
  288. <p>The <code>--no-audit</code> argument can be used to disable sending of audit reports to
  289. the configured registries. See <code><a href="../cli/npm-audit.html">npm-audit(1)</a></code> for details on what is sent.</p>
  290. <p>See <code><a href="../misc/npm-config.html">npm-config(7)</a></code>. Many of the configuration params have some
  291. effect on installation, since that&#39;s most of what npm does.</p>
  292. <h2 id="algorithm">ALGORITHM</h2>
  293. <p>To install a package, npm uses the following algorithm:</p>
  294. <pre><code>load the existing node_modules tree from disk
  295. clone the tree
  296. fetch the package.json and assorted metadata and add it to the clone
  297. walk the clone and add any missing dependencies
  298. dependencies will be added as close to the top as is possible
  299. without breaking any other modules
  300. compare the original tree with the cloned tree and make a list of
  301. actions to take to convert one to the other
  302. execute all of the actions, deepest first
  303. kinds of actions are install, update, remove and move</code></pre><p>For this <code>package{dep}</code> structure: <code>A{B,C}, B{C}, C{D}</code>,
  304. this algorithm produces:</p>
  305. <pre><code>A
  306. +-- B
  307. +-- C
  308. +-- D</code></pre><p>That is, the dependency from B to C is satisfied by the fact that A
  309. already caused C to be installed at a higher level. D is still installed
  310. at the top level because nothing conflicts with it.</p>
  311. <p>For <code>A{B,C}, B{C,D@1}, C{D@2}</code>, this algorithm produces:</p>
  312. <pre><code>A
  313. +-- B
  314. +-- C
  315. `-- D@2
  316. +-- D@1</code></pre><p>Because B&#39;s D@1 will be installed in the top level, C now has to install D@2
  317. privately for itself. This algorithm is deterministic, but different trees may
  318. be produced if two dependencies are requested for installation in a different
  319. order.</p>
  320. <p>See <a href="../files/npm-folders.html">npm-folders(5)</a> for a more detailed description of the specific
  321. folder structures that npm creates.</p>
  322. <h3 id="limitations-of-npm-s-install-algorithm">Limitations of npm&#39;s Install Algorithm</h3>
  323. <p>npm will refuse to install any package with an identical name to the
  324. current package. This can be overridden with the <code>--force</code> flag, but in
  325. most cases can simply be addressed by changing the local package name.</p>
  326. <p>There are some very rare and pathological edge-cases where a cycle can
  327. cause npm to try to install a never-ending tree of packages. Here is
  328. the simplest case:</p>
  329. <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><p>where <code>A</code> is some version of a package, and <code>A&#39;</code> is a different version
  330. of the same package. Because <code>B</code> depends on a different version of <code>A</code>
  331. than the one that is already in the tree, it must install a separate
  332. copy. The same is true of <code>A&#39;</code>, which must install <code>B&#39;</code>. Because <code>B&#39;</code>
  333. depends on the original version of <code>A</code>, which has been overridden, the
  334. cycle falls into infinite regress.</p>
  335. <p>To avoid this situation, npm flat-out refuses to install any
  336. <code>name@version</code> that is already present anywhere in the tree of package
  337. folder ancestors. A more correct, but more complex, solution would be
  338. to symlink the existing version into the new location. If this ever
  339. affects a real use-case, it will be investigated.</p>
  340. <h2 id="see-also">SEE ALSO</h2>
  341. <ul>
  342. <li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
  343. <li><a href="../cli/npm-update.html">npm-update(1)</a></li>
  344. <li><a href="../cli/npm-audit.html">npm-audit(1)</a></li>
  345. <li><a href="../cli/npm-link.html">npm-link(1)</a></li>
  346. <li><a href="../cli/npm-rebuild.html">npm-rebuild(1)</a></li>
  347. <li><a href="../misc/npm-scripts.html">npm-scripts(7)</a></li>
  348. <li><a href="../cli/npm-build.html">npm-build(1)</a></li>
  349. <li><a href="../cli/npm-config.html">npm-config(1)</a></li>
  350. <li><a href="../misc/npm-config.html">npm-config(7)</a></li>
  351. <li><a href="../files/npmrc.html">npmrc(5)</a></li>
  352. <li><a href="../misc/npm-registry.html">npm-registry(7)</a></li>
  353. <li><a href="../cli/npm-dist-tag.html">npm-dist-tag(1)</a></li>
  354. <li><a href="../cli/npm-uninstall.html">npm-uninstall(1)</a></li>
  355. <li><a href="../cli/npm-shrinkwrap.html">npm-shrinkwrap(1)</a></li>
  356. <li><a href="../files/package.json.html">package.json(5)</a></li>
  357. </ul>
  358. </div>
  359. <table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
  360. <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr>
  361. <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr>
  362. <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr>
  363. <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr>
  364. <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr>
  365. <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
  366. <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
  367. </table>
  368. <p id="footer">npm-install &mdash; npm@6.4.1</p>