mirror of https://github.com/nodejs/node.git
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
<h1><a href="../api/npm-restart.html">npm-restart</a></h1> <p>Restart a package</p>
|
|
<h2 id="synopsis">SYNOPSIS</h2>
|
|
<pre><code>npm.commands.restart(packages, callback)
|
|
</code></pre><h2 id="description">DESCRIPTION</h2>
|
|
<p>This restarts a package (or multiple packages).</p>
|
|
<p>This runs a package's "stop", "restart", and "start" scripts, and associated
|
|
pre- and post- scripts, in the order given below:</p>
|
|
<ol>
|
|
<li>prerestart</li>
|
|
<li>prestop</li>
|
|
<li>stop</li>
|
|
<li>poststop</li>
|
|
<li>restart</li>
|
|
<li>prestart</li>
|
|
<li>start</li>
|
|
<li>poststart</li>
|
|
<li>postrestart</li>
|
|
</ol>
|
|
<p>If no version is specified, then it restarts the "active" version.</p>
|
|
<p>npm can restart multiple packages. Just specify multiple packages in
|
|
the <code>packages</code> parameter.</p>
|
|
<h2 id="note">NOTE</h2>
|
|
<p>Note that the "restart" script is run <strong>in addition to</strong> the "stop"
|
|
and "start" scripts, not instead of them.</p>
|
|
<p>This is the behavior as of <code>npm</code> major version 2. A change in this
|
|
behavior will be accompanied by an increase in major version number</p>
|
|
<h2 id="see-also">SEE ALSO</h2>
|
|
<ul>
|
|
<li><a href="../api/npm-start.html">npm-start(3)</a></li>
|
|
<li><a href="../api/npm-stop.html">npm-stop(3)</a></li>
|
|
</ul>
|
|
|