Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matschik/fastify-typescript-starter
🚀 Fastify & TypeScript starter repository
https://github.com/matschik/fastify-typescript-starter
fastify starter-template typescript
Last synced: 7 days ago
JSON representation
🚀 Fastify & TypeScript starter repository
- Host: GitHub
- URL: https://github.com/matschik/fastify-typescript-starter
- Owner: matschik
- Created: 2018-07-31T22:25:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-07T04:28:09.000Z (15 days ago)
- Last Synced: 2025-01-08T03:15:30.419Z (14 days ago)
- Topics: fastify, starter-template, typescript
- Language: TypeScript
- Homepage:
- Size: 1.46 MB
- Stars: 231
- Watchers: 4
- Forks: 37
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-boilerplate - Github
- awesome-boilerplate - Github
README
# Fastify & Typescript App
> Fastify & TypeScript starter repository.
## Installation
```bash
$ git clone https://github.com/Matschik/fastify-typescript-starter.git
$ cd fastify-typescript-starter
$ npm run install
```## Usage
### Development
```bash
# Required: typescript watch compilation
$ npm run watch# Required: development server with hot reload (nodemon)
$ npm run dev# Format with prettier
$ npm run format
```### Production
```bash
# build for production
$ npm run build# start production app
$ npm run start
```