0
1

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 5 years have passed since last update.

Node.jsのインストール

Last updated at Posted at 2017-06-14

Node.jsはバージョンによる誤差が多いので、nodebrewを使ってバージョンを切り替えられるようにすると幸せです。

Homebrewのインストール

ターミナルに下記のコマンドを実行する

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

下記のコマンドを実行してエラーが出ていないか確認

$ brew doctor

https://brew.sh/index_ja.html
※xcodeが入っていない場合は先に入れましょう。

Nodebrewをインストール

Homebrewを使ってNodebrewをインストールする
最初に下記のコマンドを実行する

$ brew install nodebrew

次にセットアップコマンドを実行する

$ nodebrew setup

パスを通す

$ echo "export PATH=\$HOME/.nodebrew/current/bin:\$PATH" >> ~/.bash_profile

設定を再読み込み

$ source ~/.bash_profile

Node.jsのインストール

安定番をバイナリデータからインストールする

$ nodebrew install-binary stable

使えるようにする

$ nodebrew use stable

確認

$ node -v
$ npm -v

こんな感じでうまくいきました。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?