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: 4 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: 2024-12-12T08:43:49.000Z (10 days ago)
- Last Synced: 2024-12-12T09:34:09.808Z (10 days ago)
- Topics: fastify, starter-template, typescript
- Language: TypeScript
- Homepage:
- Size: 1.33 MB
- Stars: 225
- Watchers: 4
- Forks: 36
- Open Issues: 4
-
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
```