create-react-app 初始化项目
npx create-react-app myappnpx create-react-app myapp --use-npmyarn add redux react-redux immeryarn add normalize.cssimport 'normalize.css';
create-react-app 初始化 ts项目
ts项目初始化文档
https://www.html.cn/create-react-app/docs/adding-typescript
npx create-react-app myapp --typescriptyarn create react-app myapp --typescriptnpx create-react-app myapp --template typescriptnpx create-react-app myapp --template @eleven.fe/cra-template-typescript
- npx 可以让你直接使用 npm包,而不用全局安装
- ts模板

