npm: Upgrade to 1.3.17
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-rm.html
1 <!doctype html>
2 <html>
3   <title>npm-rm</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-rm.html">npm-rm</a></h1> <p>Remove a package</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm rm &lt;name&gt;
14 npm r &lt;name&gt;
15 npm uninstall &lt;name&gt;
16 npm un &lt;name&gt;</code></pre>
17
18 <h2 id="DESCRIPTION">DESCRIPTION</h2>
19
20 <p>This uninstalls a package, completely removing everything npm installed
21 on its behalf.</p>
22
23 <h2 id="SEE-ALSO">SEE ALSO</h2>
24
25 <ul><li><a href="../cli/npm-prune.html">npm-prune(1)</a></li><li><a href="../cli/npm-install.html">npm-install(1)</a></li><li><a href="../files/npm-folders.html">npm-folders(5)</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></ul>
26 </div>
27 <p id="footer">npm-rm &mdash; npm@1.3.17</p>
28 <script>
29 ;(function () {
30 var wrapper = document.getElementById("wrapper")
31 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
32   .filter(function (el) {
33     return el.parentNode === wrapper
34         && el.tagName.match(/H[1-6]/)
35         && el.id
36   })
37 var l = 2
38   , toc = document.createElement("ul")
39 toc.innerHTML = els.map(function (el) {
40   var i = el.tagName.charAt(1)
41     , out = ""
42   while (i > l) {
43     out += "<ul>"
44     l ++
45   }
46   while (i < l) {
47     out += "</ul>"
48     l --
49   }
50   out += "<li><a href='#" + el.id + "'>" +
51     ( el.innerText || el.text || el.innerHTML)
52     + "</a>"
53   return out
54 }).join("\n")
55 toc.id = "toc"
56 document.body.appendChild(toc)
57 })()
58 </script>