0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【2022年10月版】 macOS で node をインストールする

Last updated at Posted at 2022-10-22

はじめに

macOS で node をインストールするメモです。ここでは nvm と nodebrew を使います。

brew のインストール

まずは brew をインストールします

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

nvm 版

nvm のインストール

> brew install nvm
> echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.zshrc
> echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm' >> ~/.zshrc
> echo '[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion' >> ~/.zshrc

インストールできる node の確認

> nvm ls-remote

node の最新安定版をインストールする

> nvm install stable

nodebrew 版

nodebrew のインストール

> brew install nodebrew
> echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.zshrc

インストールできる node の確認

% nodebrew ls-remote

nodebrew が壊れている時の対策

> nodebrew setup

node の最新の安定版をインストールする

> nodebrew install-binary stable

利用できる node のバージョン確認

> node -v

最後に

かんたんでしたね

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?