Categories
JavaScript Answers

How to brew install specific version of Node?

Spread the love

To brew install specific version of Node, we run a few brew commands.

To do this, we run

brew install node@14
brew unlink node
brew link node@14

to install Node 14 with brew install.

And then we remove the old version of node with brew unlink.

Then we run brew link to link Node 14 as the default node version.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *