21
13

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.

nodebrewを使ってnode.jsを使える環境を作る

Last updated at Posted at 2018-02-15

やりたいこと

Macのターミナル上で node コマンドを実行して、node.jsを動かせる環境を作りたい

背景

訳あってnode.js自体を覚えないといけないかも...
という状況になり急いで会社のPCにnodebrew入れたが、
やったことを忘れないように手順をメモ!

注) nodebrewは、nodeのバージョン管理するものでRubyでいうrbenvのこと

手順 : nodebrewを入れるところから

1.nodebrewをインストールする

以下のURLに記載されたコマンド実行
https://github.com/hokaccha/nodebrew

*インストールするコマンド

> curl -L git.io/nodebrew | perl - setup

2.nodebrewが入ったかを確認

> nodebrew -v 

nodebrew 0.9.8 

コマンド実行後にnodebrewのバージョンが表示されたらOK

3.node.jsの最新版をインストールする

> nodebrew install-binary latest 

Fetching: https://nodejs.org/dist/v9.5.0/node-v9.5.0-darwin-x64.tar.gz
######################################################################## 100.0%
Installed successfully

successfullyが表示されたらOK

4.インストールするされたnode.jsを確認する

> nodebrew list

v9.5.0

v9.5.0がインストール済みということ

5.このままだとnode.jsはあっても、nodeコマンドが実行出来ないので、パスを通す

node.jsのパスを.bash_profileに追記

> echo 'export PATH=$PATH:/Users/ユーザー名/.nodebrew/current/bin' >> ~/.bash_profile

追記した内容を反映させるために以下のコマンドも合わせて実行

> source ~/.bash_profile

ユーザー名の部分は自分のPCのユーザー名

6.nodeコマンド実行

nodeコマンド実行後 > が次の行に表示されてコンソールが起動すればオッケー

node
>
併せてconsole.logで値を出力できることも確認
> console.log("hoge");
hoge
undefined

21
13
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
21
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?