Fastify & TypeScript starter repository.
$ git clone https://github.com/Matschik/fastify-typescript-starter.git
$ cd fastify-typescript-starter
$ npm install
$ rm -rf .git # Remove repository's git directory
# development: hot reload with nodemon
$ npm run dev
# debug
$ npm run debug
# format with prettier
$ npm run format
# build for production
$ npm run build
# production
$ npm run prod