0
0

More than 3 years have passed since last update.

React コマンドメモ

Posted at

新規作成

$ 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
0
0
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
0