React起動コマンド
Reactの起動コマンドとかすぐ忘れるので。Node.jsとか必要なものはインストール済み。
Create React App
npx create-react-app [作成ディレクトリ名] --template=typescript
起動と終了
# 起動cd [作成ディレクトリ名]npm start
# 終了control + c (^C)
Reactの起動コマンドとかすぐ忘れるので。Node.jsとか必要なものはインストール済み。
Create React App
npx create-react-app [作成ディレクトリ名] --template=typescript
起動と終了
# 起動cd [作成ディレクトリ名]npm start
# 終了control + c (^C)