mirror of https://github.com/nodejs/node.git
22 lines
1.0 KiB
HTML
22 lines
1.0 KiB
HTML
<h1><a href="../cli/npm-pack.html">npm-pack</a></h1> <p>Create a tarball from a package</p>
|
|
<h2 id="synopsis">SYNOPSIS</h2>
|
|
<pre><code>npm pack [<pkg> [<pkg> ...]]
|
|
</code></pre><h2 id="description">DESCRIPTION</h2>
|
|
<p>For anything that's installable (that is, a package folder, tarball,
|
|
tarball url, name@tag, name@version, or name), this command will fetch
|
|
it to the cache, and then copy the tarball to the current working
|
|
directory as <code><name>-<version>.tgz</code>, and then write the filenames out to
|
|
stdout.</p>
|
|
<p>If the same package is specified multiple times, then the file will be
|
|
overwritten the second time.</p>
|
|
<p>If no arguments are supplied, then npm packs the current package folder.</p>
|
|
<h2 id="see-also">SEE ALSO</h2>
|
|
<ul>
|
|
<li><a href="../cli/npm-cache.html">npm-cache(1)</a></li>
|
|
<li><a href="../cli/npm-publish.html">npm-publish(1)</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>
|
|
|