How to downgrade to a previous Node version

asked 5mo ago
Shashika Virajhasked 5mo ago
5 Upvotes
1 Downvotes
1 Answers
59 Views
4

I want to downgrade my Node version from the latest to a specific one. Tried NVM and it gives an error saying that the make command is not found. How should I do this?

1 Answer(s)

user
Code Rightanswered 5mo ago
1 Upvotes
0 Downvotes
1
  1. Go to this link and download & install the suitable nvm setup on your computer https://github.com/coreybutler/nvm-windows

  2. Type nvm list to get list of installed node versions

  3. Type nvm install <node-version>

  4. Type nvm use <version>

Your Answer