JavaScript&React環境構築

環境

  • M2 MacBookPro
  • OS:Sonoma 14.3.1

% brew install nodebrew
% nodebrew -v
nodebrew 1.2.0

# nodebrewパス設定
% echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.zshrc
% source ~/.zshrc

# 安定版をインストール
% nodebrew install stable

% nodebrew list
v22.1.0
current: none

# バージョン確認
% nodebrew use v22.1.0
use v22.1.0
% node -v
v22.1.0
% npm -v
10.7.0

# プロジェクト作成
% npx create-react-app react_app
% cd react_app
% npm start

起動確認

http://localhost:3000/