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.
|
|
|
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. |
|||||||||||||
|
|
I like using a package.json file in the root of your app folder. Here is one I use
|
|||
|
|
|
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. |
|||
|
|
|
I had issues installing Express on Ubuntu: If for some reason NPM command is missing, test npm command with If just the Express command is not working, try:
This made everything work as I'm used to with Windows7 and OSX. Hope this helps! |
|||
|
|
|
On a Mac, I found the output contained the information I was looking for:
After adding
normally. |
|||
|
|