基于vite构建的react + mobox + typescript 脚手架
To use this template with Create React App, add --template react-boat when creating a new app. For example:
npx create-react-app my-app --template react-boat
yarn create react-app my-app --template react-boat
从零开始搭 vite + reactjs 项目,,并通过 Actions 自动构建,发布
vite + reactjs + typescript + mobx + eslint + json-server
useRouters构造路由
通过import做异步加载
const Home = lazy(() => import('@/page/home'))
json-server做mock请求,接口定义符合RESTful API 规范
concurrently同时启动前端、后端2个服务
- yarn mock
本地开发,启动mock请求
- yarn build
构建生产环境
- yarn server
构建后,用dist目录的静态资源启动服务,并开启mock
- yarn json-server
开启json-server,模拟数据接口