Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

By default of NPM is installing the modules under "node_modules". Is there a way to change it to be for example "my_modules?

share|improve this question

1 Answer

The standard for all node modules is to use the node_modules directory.

Do not try to go against this uniform standard.

What are you trying to accomplish by customizing the directory?


Note:

The following command will install a module to my_project/node_modules/some_module

[~/my_project] $ npm install some_module

If you'd like to install modules and have them globally available on your system, you can use the --global (-g) flag

[~/my_project] $ npm install -g some_module

Packages installed with the -g flag are installed to ~/.npm


EDIT

Per your comment, you can attempt to install any directory that contains a package.json directory

[~/my_project] $ npm install /path/to/my/pkg

Alternatively you can install a symbolic link instead of copying the entire module to your ~/my_project/node_modules directory.

[~/my_project] $ npm link /path/to/my/pkg

For more info about this:

$ npm help install
$ npm help link
share|improve this answer
I want to use npm to install not only my node packages, but also other packages I use. – Guy Korland Dec 2 '12 at 11:55
I made an edit to address your comment – maček Dec 2 '12 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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