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

How to install a previous exact version of a NPM package?


If you have to install an older version of a package, just specify it

npm install <package>@<version>

For example: npm install express@3.0.0

You can also add the --save flag to that command to add it to your package.json dependencies, or --save --save-exact flags if you want that exact version specified in your package.json dependencies.

The install command is documented here: https://docs.npmjs.com/cli/install

If you're not sure what versions of a package are available, you can use:

npm view <package> versions

And npm view can be used for viewing other things about a package too. https://docs.npmjs.com/cli/view


It's quite easy. Just write this, for example:

npm install -g npm@4.6.1

Or:

npm install -g npm@latest    // For the last stable versionnpm install -g npm@next      // For the most recent release


First remove old version, then run literally the following:

npm install express@3.X

and for stable or recent

npm install -g npm@latest    // For the last stable versionnpm install -g npm@next      // For the most recent release