A boilerplate to create koa app with typescript
- ✅ latest Koa version: 2.15.3
- ✅ laster Typescript version: 5.4.5
- ✅ use eslint flat config
- ✅ auto-fixed and auto-formatting on save
yarn global add create-koa-ts-app
create-koa-ts-app <project-name>
yarn create koa-ts-app <project-name>
npx create-koa-ts-app <project-name>
<project-name>
├── node_modules
├── src
│ ├── @types
│ ├── api
│ │ ├── greeting.ts
│ │ └── index.ts
│ ├── app.ts
│ ├── index.ts
│ └── lib
│ └── route.ts
├── tsconfig.json
├── package.json
├── yarn.lock
├── dev.sh
├── LICENSE
└── README.md
This project is licensed under the MIT License - see the LICENSE file for details.