mirror of https://github.com/nodejs/node.git
19 lines
699 B
HTML
19 lines
699 B
HTML
|
<h1><a href="../cli/npm-rebuild.html">npm-rebuild</a></h1> <p>Rebuild a package</p>
|
||
|
<h2 id="synopsis">SYNOPSIS</h2>
|
||
|
<pre><code>npm rebuild [<name> [<name> ...]]
|
||
|
npm rb [<name> [<name> ...]]
|
||
|
</code></pre><ul>
|
||
|
<li><code><name></code>:
|
||
|
The package to rebuild</li>
|
||
|
</ul>
|
||
|
<h2 id="description">DESCRIPTION</h2>
|
||
|
<p>This command runs the <code>npm build</code> command on the matched folders. This is useful
|
||
|
when you install a new version of node, and must recompile all your C++ addons with
|
||
|
the new binary.</p>
|
||
|
<h2 id="see-also">SEE ALSO</h2>
|
||
|
<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>
|
||
|
|