nodebrewのインストール
curl -L git.io/nodebrew | perl - setup
export PATH=$HOME/.nodebrew/current/bin:$PATH
nodeのインストール
nodebrew install latest
nodebrew use latest
yarnのインストール
npm install --global yarn
yarnのバージョン確認
yarn --version
create-react-app
yarn global add create-react-app
pathが通っていない場合
export PATH="$PATH:yarn global bin
"
以下のコマンドで簡単にreactのアプリケーションの環境構築ができる
create-react-app app-name
コメント