The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / deps / npm / html / doc / api / npm-pack.html @ 5e865191

History | View | Annotate | Download (1.66 KB)

1
<!doctype html>
2
<html>
3
  <title>npm-pack</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="../api/npm-pack.html">npm-pack</a></h1> <p>Create a tarball from a package</p>
10

    
11
<h2 id="SYNOPSIS">SYNOPSIS</h2>
12

    
13
<pre><code>npm.commands.pack([packages,] callback)</code></pre>
14

    
15
<h2 id="DESCRIPTION">DESCRIPTION</h2>
16

    
17
<p>For anything that&#39;s installable (that is, a package folder, tarball,
18
tarball url, name@tag, name@version, or name), this command will fetch
19
it to the cache, and then copy the tarball to the current working
20
directory as <code>&lt;name&gt;-&lt;version&gt;.tgz</code>, and then write the filenames out to
21
stdout.</p>
22

    
23
<p>If the same package is specified multiple times, then the file will be
24
overwritten the second time.</p>
25

    
26
<p>If no arguments are supplied, then npm packs the current package folder.</p>
27
</div>
28
<p id="footer">npm-pack &mdash; npm@1.3.4</p>
29
<script>
30
;(function () {
31
var wrapper = document.getElementById("wrapper")
32
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
33
  .filter(function (el) {
34
    return el.parentNode === wrapper
35
        && el.tagName.match(/H[1-6]/)
36
        && el.id
37
  })
38
var l = 2
39
  , toc = document.createElement("ul")
40
toc.innerHTML = els.map(function (el) {
41
  var i = el.tagName.charAt(1)
42
    , out = ""
43
  while (i > l) {
44
    out += "<ul>"
45
    l ++
46
  }
47
  while (i < l) {
48
    out += "</ul>"
49
    l --
50
  }
51
  out += "<li><a href='#" + el.id + "'>" +
52
    ( el.innerText || el.text || el.innerHTML)
53
    + "</a>"
54
  return out
55
}).join("\n")
56
toc.id = "toc"
57
document.body.appendChild(toc)
58
})()
59
</script>