Using npm we can install the modules globally using -g option. How can we do this in the package.json file?

Suppose, these are my dependencies in package.json file

"dependencies": {
    "mongoose": "1.4.0",
    "node.io" : "0.3.3",
    "jquery"  : "1.5.1",
    "jsdom"   : "0.2.0",
    "cron"    : "0.1.2"
  }

When i run npm install, I want only node.io to be installed globally, the rest others should be installed locally. Is there an option for this?

link|improve this question

2  
You can't. You can however set "preferGlobal": true inside package.json for a module. – Raynos Jun 25 '11 at 21:38
yeah, I know about <code>preferGlobal</code>, but that would install all the dependencies globally... anyway Thanks! i guess there is no feature like that... – Madhusudhan Jun 26 '11 at 0:01
2  
I don't think it does. It installs the current module globallly. If an individual dependency has it set to true it may also be installed globally. Really you should just ask @isaacs in #node.js – Raynos Jun 26 '11 at 10:01
Global installations can produce dependency hell. Say package A needs version 0.3.3 and package B version 0.3.4 and both don't work with the other version. Then you'd need two machines to accomodate the two packages. – nalply Oct 9 '11 at 20:15
feedback

1 Answer

up vote 0 down vote accepted

All modules from package.json are installed to ./node_modules/

I couldn't find this explicitly stated but this is the package.json reference for NPM https://github.com/isaacs/npm/blob/master/doc/json.md

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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