mirror of https://github.com/nodejs/node.git
18 lines
825 B
HTML
18 lines
825 B
HTML
|
<h1><a href="../api/npm-load.html">npm-load</a></h1> <p>Load config settings</p>
|
||
|
<h2 id="synopsis">SYNOPSIS</h2>
|
||
|
<pre><code>npm.load(conf, cb)
|
||
|
</code></pre><h2 id="description">DESCRIPTION</h2>
|
||
|
<p>npm.load() must be called before any other function call. Both parameters are
|
||
|
optional, but the second is recommended.</p>
|
||
|
<p>The first parameter is an object containing command-line config params, and the
|
||
|
second parameter is a callback that will be called when npm is loaded and ready
|
||
|
to serve.</p>
|
||
|
<p>The first parameter should follow a similar structure as the package.json
|
||
|
config object.</p>
|
||
|
<p>For example, to emulate the --dev flag, pass an object that looks like this:</p>
|
||
|
<pre><code>{
|
||
|
"dev": true
|
||
|
}
|
||
|
</code></pre><p>For a list of all the available command-line configs, see <code>npm help config</code></p>
|
||
|
|