4 <meta http-equiv="content-type" value="text/html;utf-8">
5 <link rel="stylesheet" type="text/css" href="../../static/style.css">
9 <h1><a href="../cli/npm-bin.html">npm-bin</a></h1> <p>Display npm bin folder</p>
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
13 <pre><code>npm bin</code></pre>
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
17 <p>Print the folder where npm will install executables.</p>
19 <h2 id="SEE-ALSO">SEE ALSO</h2>
21 <ul><li><a href="../cli/npm-prefix.html">npm-prefix(1)</a></li><li><a href="../cli/npm-root.html">npm-root(1)</a></li><li><a href="../files/npm-folders.html">npm-folders(5)</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>
23 <p id="footer">npm-bin — npm@1.3.17</p>
26 var wrapper = document.getElementById("wrapper")
27 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
28 .filter(function (el) {
29 return el.parentNode === wrapper
30 && el.tagName.match(/H[1-6]/)
34 , toc = document.createElement("ul")
35 toc.innerHTML = els.map(function (el) {
36 var i = el.tagName.charAt(1)
46 out += "<li><a href='#" + el.id + "'>" +
47 ( el.innerText || el.text || el.innerHTML)
52 document.body.appendChild(toc)