a7ddd04ab8f8c40a6ae27a4e460c1207a023aa59
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-rebuild.html
1 <!doctype html>
2 <html>
3   <title>npm-rebuild</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-rebuild.html">npm-rebuild</a></h1> <p>Rebuild a package</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm rebuild [&lt;name&gt; [&lt;name&gt; ...]]
14 npm rb [&lt;name&gt; [&lt;name&gt; ...]]</code></pre>
15
16 <ul><li><code>&lt;name&gt;</code>:
17 The package to rebuild</li></ul>
18
19 <h2 id="DESCRIPTION">DESCRIPTION</h2>
20
21 <p>This command runs the <code>npm build</code> command on the matched folders.  This is useful
22 when you install a new version of node, and must recompile all your C++ addons with
23 the new binary.</p>
24
25 <h2 id="SEE-ALSO">SEE ALSO</h2>
26
27 <ul><li><a href="../cli/npm-build.html">npm-build(1)</a></li><li><a href="../cli/npm-install.html">npm-install(1)</a></li></ul>
28 </div>
29 <p id="footer">npm-rebuild &mdash; npm@1.3.17</p>
30 <script>
31 ;(function () {
32 var wrapper = document.getElementById("wrapper")
33 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
34   .filter(function (el) {
35     return el.parentNode === wrapper
36         && el.tagName.match(/H[1-6]/)
37         && el.id
38   })
39 var l = 2
40   , toc = document.createElement("ul")
41 toc.innerHTML = els.map(function (el) {
42   var i = el.tagName.charAt(1)
43     , out = ""
44   while (i > l) {
45     out += "<ul>"
46     l ++
47   }
48   while (i < l) {
49     out += "</ul>"
50     l --
51   }
52   out += "<li><a href='#" + el.id + "'>" +
53     ( el.innerText || el.text || el.innerHTML)
54     + "</a>"
55   return out
56 }).join("\n")
57 toc.id = "toc"
58 document.body.appendChild(toc)
59 })()
60 </script>