Reputation: 11
I was trying to downgrade my current node version
What is the best to downgrade node version from 14.4.0 to 10.13.0?
Please advice
Upvotes: 0
Views: 3742
Reputation: 5674
Just use n or nvm. These applications help you manage multiple versions of Node.js.
Just run sudo npm install -g n
and then sudo n 10.13.0
and you should be good to go. If you're not on Linux ignore the sudo
part.
You'll know it worked if you run node --version
and it says v10.13.0
.
Upvotes: 1