create-react-su
v2.0.0
Published
企业级 React + Vite + TypeScript 脚手架工具
Maintainers
Readme
create-react-su
企业级 React + Vite + TypeScript 脚手架工具
使用
# npm
npm create react-su
# npx
npx create-react-su
# yarn
yarn create react-su
# pnpm
pnpm create react-su技术栈
| 技术 | 版本 | |------|------| | React | 19.2 | | Vite | 8.2 | | TypeScript | 5.9 | | Ant Design | 6.6 | | Tailwind CSS | 4.3 | | Redux Toolkit | 2.12 | | React Router | 7.18 | | Axios | 1.19 |
模板结构
src/
├── assets/ # 静态资源
├── components/ # 通用 UI 组件(无业务逻辑)
├── features/ # 业务功能模块(按领域拆分)
│ └── home/
├── hooks/ # 全局共享 Hooks
├── routes/ # 路由配置(懒加载)
├── services/ # API 服务 & Axios 封装
├── store/ # Redux 状态管理
│ └── slices/
├── styles/ # 全局样式
├── types/ # TypeScript 类型定义
├── utils/ # 工具函数
├── App.tsx
└── main.tsx代码规范
- ESLint 9 Flat Config + Prettier
- Husky + lint-staged(pre-commit)
- Commitlint(Conventional Commits)
- 路径别名
@/→src/ - 环境变量
.env.development/.env.production
License
MIT
