Last active
December 8, 2022 10:11
-
-
Save ciamac-da/e2520a92e7c8aa682cb2a707e2e40d8b to your computer and use it in GitHub Desktop.
This is how to install and set a specific node/npm/yarn version on Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: I add an example as a pattern here, you just need to change the version number in case you want to have other versions! | |
1- Install NODE: nvm install 16.13.2 | |
2- Make Installed version as default: nvm alias default 16.13.2 | |
3- NPM: npm install [email protected] -g | |
3- YARN: yarn set version 1.22.19 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment