Top "Npm" questions

npm is the package manager shipped with Node.

How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)

My version of node is always v0.6.1-pre even after I install brew node and NVM install v0.6.19. My node …

javascript node.js npm
How can I update NodeJS and NPM to the next versions?

I just installed Node.js and npm (for additional modules). How can I update Node.js and the modules which …

node.js linux npm node-modules npm-update
Find the version of an installed npm package

How to find the version of an installed node.js/npm package? This prints the version of npm itself: npm …

node.js package npm
How can I update npm on Windows?

I tried this: sudo npm cache clean -f sudo npm install -g n sudo n stable ...but it didn't work. …

windows node.js npm package-managers
How to uninstall npm modules in node js?

As commonly known, any npm module can be installed by running a simple command: npm install <module_name>. …

node.js npm
How to update each dependency in package.json to the latest version?

I copied package.json from another project and now want to bump all of the dependencies to their latest versions …

node.js npm
What's the difference between tilde(~) and caret(^) in package.json?

After I upgraded to latest stable node and npm, I tried npm install moment --save. It saves the entry in …

node.js npm package.json semantic-versioning
What is the --save option for npm install?

I saw some tutorial where the command was: npm install --save What does the --save option mean? Not able to …

node.js npm
Where does npm install packages?

Can someone tell me where can I find the Node.js modules, which I installed using npm?

javascript node.js location npm
How to install a previous exact version of a NPM package?

I used nvm to download node v0.4.10 and installed npm to work with that version of node. I am trying …

node.js npm