I recently installed Node.js and npm module on OSX and have a problem with the settings I think:
npm install [MODULE] is not installing the node.js module to the default path which is /usr/local/lib/node_modules.
Thank you
|
feedback
|
|
If you want to install a npm module globally, make sure to use the new
The general recommendations concerning npm module installation since 1.0rc (taken from blog.nodejs.org):
I just recently used this recommendations and it went down pretty smoothly. I installed forever globally (since it is a command line tool) and all my application modules locally. However, if you want to use some modules globally (i.e. express or mongodb), take this advice (also taken from blog.nodejs.org):
I did not test one of those variations, but they seem to be pretty straightforward. | |||||||||||
feedback
|
|
I like using a package.json file in the root of your app folder. Here is one I use
| |||
|
feedback
|
|
You might not have write permissions to install a node module in the global location such as /usr/local/lib/node_modules, in which case run npm install -g package as root. | |||
|
feedback
|