3 <title>npm-init</title>
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-init.html">npm-init</a></h1> <p>Interactively create a package.json file</p>
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
13 <pre><code>npm init</code></pre>
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
17 <p>This will ask you a bunch of questions, and then write a package.json for you.</p>
19 <p>It attempts to make reasonable guesses about what you want things to be set to,
20 and then writes a package.json file with the options you've selected.</p>
22 <p>If you already have a package.json file, it'll read that first, and default to
23 the options in there.</p>
25 <p>It is strictly additive, so it does not delete options from your package.json
26 without a really good reason to do so.</p>
28 <h2 id="SEE-ALSO">SEE ALSO</h2>
30 <ul><li><a href="https://github.com/isaacs/init-package-json">https://github.com/isaacs/init-package-json</a></li><li><a href="../files/package.json.html">package.json(5)</a></li><li><a href="../cli/npm-version.html">npm-version(1)</a></li></ul>
32 <p id="footer">npm-init — npm@1.3.17</p>
35 var wrapper = document.getElementById("wrapper")
36 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
37 .filter(function (el) {
38 return el.parentNode === wrapper
39 && el.tagName.match(/H[1-6]/)
43 , toc = document.createElement("ul")
44 toc.innerHTML = els.map(function (el) {
45 var i = el.tagName.charAt(1)
55 out += "<li><a href='#" + el.id + "'>" +
56 ( el.innerText || el.text || el.innerHTML)
61 document.body.appendChild(toc)