Home > Back-end >  How to downgrade node version?
How to downgrade node version?

Time:12-23

I want to downgrade my version using npm. The current version is 16.13.1. I want to downgrade this to 12.0.1. Can anyone tell me how to do it?

Thanks!

CodePudding user response:

use node version manager nvm, you can switch any node version that you want.

More details

https://github.com/nvm-sh/nvm/blob/master/README.md

https://www.npmjs.com/package/nvm

CodePudding user response:

You could also install the node npm module to change (upgrade or downgrade) the NodeJS version for the specific project.

  • Related