Bare minimum for getting started with Koa + TypeScript.
Getting started
mkdir your-project
cd your-project
git init
git remote add template git@github.com:Turee/node-typescript-koa-starter.git
git fetch template
git reset --hard template/master
Has:
- Configuration using environment variables.
- Yup for environment variable validation.
- Jest and supertest for testing.
- Prettier for code automagic code formatting.
- Dockerfile.
Usage:
Start development: yarn start
Build for production yarn build
Test: yarn test
Watch tests: yarn watch-test