create-react-app 初始化项目

  1. npx create-react-app myapp
  2. npx create-react-app myapp --use-npm
  3. yarn add redux react-redux immer
  4. yarn add normalize.css
  5. import 'normalize.css';

create-react-app 初始化 ts项目

ts项目初始化文档
https://www.html.cn/create-react-app/docs/adding-typescript

  1. npx create-react-app myapp --typescript
  2. yarn create react-app myapp --typescript
  3. npx create-react-app myapp --template typescript
  4. npx create-react-app myapp --template @eleven.fe/cra-template-typescript

image.png