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

Nodebrew  を使って Node.js をインストールしてみた

Posted at

#はじめに

  • 2021年6月開講の医療者向けプログラミングスクール「ものづくり医療センター」に0期生として参加させていただくことになった。 

  • 受講にあたって以下の事前準備を行ったので、備忘録として記す。

#環境

  • MacOS BigSur
  • VSCode
  • (iTerm2) :事務局から推奨されたわけではないが、個人的にインストールしてあった。

#1.Homebrew のインストール
今回は、NodebrewをHomebrewからインストールする 
省略
→ 参考 https://qiita.com/zaburo/items/29fe23c1ceb6056109fd

###動作確認

MB:~ tomoko$ brew -v
Homebrew 3.1.9-129-g9f4874d
Homebrew/homebrew-core (git revision ********; last commit 2019-04-22)

#2.Nodebrew の インストール

$  brew install nodebrew 

###動作確認

MB:~ tomoko$ nodebrew -v
nodebrew 1.0.1

無事Nodebrewがインストールされいた

#3.Nodebrew を使って Node.js をインストール

###インストール可能なバージョンを確認(省略可能)

MB:~ tomoko$ nodebrew ls-remote

###最新版のNode.jsをインストール

MB:~ tomoko$ nodebrew install-binary latest
Fetching: https://nodejs.org/dist/v16.3.0/node-v16.3.0-darwin-x64.tar.gz
######################################################################### 100.0%
Installed successfully

###インストールされているバージョンを確認

tomoko@MB ~ % nodebrew ls
v11.14.0
v16.3.0

current: v11.14.0

###最新版のバージョンを有効化

tomoko@MB ~ % nodebrew use  v16.3.0
use v16.3.0

###バージョンの再確認

tomoko@MB ~ % nodebrew ls          
v11.14.0
v16.3.0

current: v16.3.0

無事、最新版になっていることを確認できた。

#4.npmのバージョン確認
Node.js をインストールするとパッケージ管理ツールの npm(Node Package Manager)も一緒にインストールされる。

tomoko@MB ~ % npm -v
7.15.1

#参考にしたサイト

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?