Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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
```