<!doctype html> <html> <title>publish</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../static/style.css"> <body> <div id="wrapper"> <h1><a href="../doc/publish.html">publish</a></h1> <p>Publish a package</p> <h2 id="SYNOPSIS">SYNOPSIS</h2> <pre><code>npm publish <tarball> npm publish <folder></code></pre> <h2 id="DESCRIPTION">DESCRIPTION</h2> <p>Publishes a package to the registry so that it can be installed by name.</p> <ul><li><p><code><folder></code>: A folder containing a package.json file</p></li><li><p><code><tarball></code>: A url or file path to a gzipped tar archive containing a single folder with a package.json file inside.</p></li></ul> <p>Fails if the package name and version combination already exists in the registry. Overwrites when the "--force" flag is set.</p> <h2 id="SEE-ALSO">SEE ALSO</h2> <ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li><li><a href="../doc/owner.html">owner(1)</a></li><li><a href="../doc/deprecate.html">deprecate(1)</a></li><li><a href="../doc/tag.html">tag(1)</a></li></ul> </div> <p id="footer">publish — npm@1.1.46</p> <script> ;(function () { var wrapper = document.getElementById("wrapper") var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0) .filter(function (el) { return el.parentNode === wrapper && el.tagName.match(/H[1-6]/) && el.id }) var l = 2 , toc = document.createElement("ul") toc.innerHTML = els.map(function (el) { var i = el.tagName.charAt(1) , out = "" while (i > l) { out += "<ul>" l ++ } while (i < l) { out += "</ul>" l -- } out += "<li><a href='#" + el.id + "'>" + ( el.innerText || el.text || el.innerHTML) + "</a>" return out }).join("\n") toc.id = "toc" document.body.appendChild(toc) })() </script> </body></html>