LoginSignup
0
1

More than 3 years have passed since last update.

React環境構築 勉強用

Posted at

環境構築

Homebrewのインストール

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

Homebrewのバージョン確認

brew --version

nodebrewのインストール

nodeのバージョンを管理

brew install nodebrew

nodebrewのバージョンをインストール

stable ←安定版をインストール

nodebrew install stable

インストールしたバージョンを使う

nodebrew use 「インストールしたバージョン」

nodebrew use v14.15.3

nodeのバージョンの一覧表示

nodebrewで入れているnodeのバージョンの一覧表示
(例) current: v14.15.3 ←今使っているバージョン

nodebrew ls

Node.jsのバージョン確認

node -v

npmのバージョン確認

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