Home > Software design >  Downgrade Node Js version
Downgrade Node Js version

Time:05-30

I want to downgrade the NodeJs version to 16 as some of the dependencies I am using in my React app do not support NodeJs 17. I tried this method enter image description here

Any sort of help is appreciated. Thanks in advance.

CodePudding user response:

You can use Node Version Manager(NVM).where you can downgrade or upgrade any node version. Please check

https://github.com/nvm-sh/nvm

Windows: https://dev.to/skaytech/how-to-install-node-version-manager-nvm-for-windows-10-4nbi Ubuntu: https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04

CodePudding user response:

n is the simplest package to manage your node versions.

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

  • Related