I want to downgrade my Node version from the latest to v6.10.3.
v6.10.3
But nothing worked so far. Tried NVM and it gives an error as well by saying make comman
In Mac there is a fast method with brew:
brew search node
You see some version, for example: node@10 node@12 ... Then
brew unlink node
And now select a before version for example node@12
brew link --overwrite --force node@12
Ready, you have downgraded you node version.