3
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® のインストール

Posted at

Node.js® を Mac + ダウンロードパッケージからインストールしてみたときの記録。

##ダウンロード
https://nodejs.org/en/download/
よりダウンロード。

Macにインストールするため
「macOS Installer (.pkg)」を選択

FireShot Capture 1 - Download I Node.js - https___nodejs.org_en_download_.png

##インストール実行
ダウンロードしたファイルをダブルクリックで実行
スクリーンショット 2018-04-28 15.09.36.png

「続ける」ボタンでダイヤログを進めてインストールを完了
スクリーンショット 2018-04-28 15.11.50.png

Make sure that /usr/local/bin is in your $PATH.

とのことなので 確認

echo $PATH
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin

入っているのでOK

入っていない場合は

vi ~/.bash_profile


.bash_profileに下記を追加
export PATH=$PATH:/usr/local/bin

バージョン確認

$ node -v
v8.11.1
$ npm -v
5.6.0

実行確認

ターミナルで 対話形式で実行を確認

node
> console.log("Hello World!!");
Hello World!!
undefined

動いているのを確認

・・・
パッケージをダウンロードしてインストールしてしまったけど
今後のことを考えると
NodeBrew を インストールして バージョンを容易に切り替えるようにしておいた方がよかったかも (・ ・;)

3
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
3
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?