Skip to content
Dashboard

Zero-configuration support for Fastify

src/server.ts
import Fastify from 'fastify'
const fastify = Fastify({ logger: true })
fastify.get('/', async (request, reply) => { return { hello: 'world' }})
fastify.listen({ port: 3000 })

A "Hello World" Fastify app on Vercel