Downgrade node.js using homebrew on MacOS
check your node version by running this command lnode -v install the node version you want, for example your current version is node 14, and you'd like to install node version 12 brew install node@12 unlink your current version node@14 brew unlink node@14 link the old version - node@12 brew...
more...