I tried updating npm
to see if it would solve some dependency problems we were having, and now I want to downgrade to the version the rest of the development team is using. How can I install an older version?
I updated npm
according to the instructions on the About npm
CLI versions:
The latest release of
npm
The latest release of
npm
is the most recent stable version. When you install Node.js,npm
is automatically installed. However,npm
is released more frequently than Node.js, so to install the latest stable version ofnpm
, on the command line, run:
npm install npm@latest -g
Just replace @latest
with the version number you want to downgrade to. I wanted to downgrade to version 3.10.10, so I used this command:
npm install -g npm@3.10.10
If you're not sure which version you should use, look at the version history. For example, you can see that 3.10.10 is the latest version of npm 3.