Sventies
Sventies

Reputation: 2756

Install Node on M1 Mac

I have a new Mac with an M1 chip, and want to install Node. I used to do this with Homebrew. Now, if I install Homebrew, I'm strongly recommended to use Rosetta, so I did. Next step: installing Node. So instead of brew install node I do arch -x86_64 brew install node.

This works fine, only I'm wondering, am I now using node in a sub-optimal way? Is Node also using Rosetta, instead of directly running on the M1 chip?

Upvotes: 55

Views: 150451

Answers (8)

Mark
Mark

Reputation: 2549

I just got my M1 Mac mini. I did add an alias since I use oh-my-zsh to my ~/.zshrc for alias brew=arch -x86_64 brew so I don't have to keep typing all that. I brew install nvm then nvm ls-remote and installed v15.5.0. It gets built DV8_TARGET_ARCH_ARM64.

Hope that helps. I also pulled the insiders VSCode for ARM64. Loads in a second.

> node -p "process.arch" arm64

Don't forget you need xcode-select --install command line tools (~450MB).

Upvotes: 24

chenrui
chenrui

Reputation: 9868

As Node v16 natively supports Apple Silicon, brew install node or nvm install 16 would work on the Apple M1 laptops.

Here is my current build.

$ nvm --version
0.39.0

$ node --version
v16.13.1

$ node -p "process.arch"
arm64

Upvotes: 12

iDecode
iDecode

Reputation: 28856

To install Node 15.6.0 or higher:

  1. Install nvm:

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
    
  2. Install NodeJS

    nvm install v15
    

To verify if both nvm and NodeJS were installed successfully, run:

node -v
npm -v

You can find more information here

Upvotes: 5

luisdemarchi
luisdemarchi

Reputation: 1572

From node v16.x:

enter image description here https://doesitarm.com/app/nodejs/

enter image description here

PS: node v16 has problems with serverless-offline. I managed to solve it using node v15.4.0


From node v15.x:

sudo xcode-select --install
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
nvm install v15
node --version

Upvotes: 19

Mohammadreza Abdoli
Mohammadreza Abdoli

Reputation: 1048

you can install node using n, please follow the link.

n --arch arm64 16

Upvotes: -1

Sators
Sators

Reputation: 3116

Depending on your project dependencies, you might find it necessary to run node on an x86 architecture as it may get you past frustrating errors on older versions of node. If like me you had already installed node in your attempts here, you can use the following to help get you sorted (assuming you have already installed NVM):

$ nvm uninstall 14
$ arch -x86_64 zsh 
$ nvm install 14
$ nvm alias default 14

Consider replacing 14 above with whichever node version you are attempting to run under.

After installing, you can run node followed process.arch to confirm that node is running in x64 mode:

$ node
> process.arch
'x64'

Upvotes: 55

SIDDHANT JOHARI
SIDDHANT JOHARI

Reputation: 82

Open Terminal Using Rosseta 2 if you haven't installed rosseta2 yet Just Check out my blog to set up it

https://siddhantjohari.medium.com/setting-up-react-native-in-mac-m1-aaf18c37fc34

Install Homebrew using this command.

arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Now hit this command to install nodejs or anything you want

arch -x86_64 brew install <package>

Thank you.

Upvotes: 1

Lazyexpert
Lazyexpert

Reputation: 3154

Nvm install 14.15.3 (current LTS) wasn't successful for me in any of the attempts (with brew arch -x86_64 prefix as well). But, I was able to:

  • install nvm from github (with putting the "export" string to ~/.zhrc and executing it)
  • nvm install 15

Note: This VSCode version works for me as well: https://code.visualstudio.com/docs/?dv=osx&build=insiders

Upvotes: 1

Related Questions