Using NodeJs 14 with Mac Silicon (M1)

PHOTO EMBED

Mon May 22 2023 07:23:37 GMT+0000 (Coordinated Universal Time)

Saved by @savecode #typescript #javascript #angular

# Installing Rosetta
/usr/sbin/softwareupdate --install-rosetta --agree-to-license

# Install NVM
# https://github.com/nvm-sh/nvm#install--update-script
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash

# Installing Node 14 by NVM
arch
# >>> arm64
arch -x86_64 zsh
arch
# >>> i386
nvm install 14
nvm use 14
content_copyCOPY

https://devzilla.io/using-nodejs-14-with-mac-silicon-m1