I've seen some posts that refer to running npm with a -d argument. For example, this issue refers to doing npm -d install coffee-script. There are a few other pages that also refer to this syntax, including the install instructions for at least one npm package.

But I've been unable to find any documentation for this -d argument. The docs for npm install make no mention of -d, nor does the npm FAQ, nor do any of the other documentation pages I've looked through.

Does the -d option do anything? If so, what?

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Look harder! :)

http://npmjs.org/doc/config.html

It's a shortcut for --loglevel info

link|improve this answer
1  
Ah... of course the command-line parameters wouldn't be documented on the pages that talk about command-line parameters or the commands they apply to. Silly me! – Joe White Mar 3 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.