新規作成
$ npx create-react-app [プロジェクト名]
# TSX(JSXのTypeScript版)で作りたい時
# --template typescriptをつける
$ npx create-react-app --template typescript [プロジェクト名]
開発サーバー起動
$ npm start
ビルドしてHTML/CSS/JSファイルを生成
$ npm run build
jestによるテストの実行
$ npm test
↧