Fastify squeezes every last request per second out of Node.js. Cloudoku gives it an equally efficient home in production — low-overhead containers, instant rollouts, and zero cold-start latency.
import Fastify from 'fastify'
import cors from '@fastify/cors'
const app = Fastify({ logger: true })
app.register(cors)
app.get('/health', {
schema: { response: { 200: { type: 'object' } } }
}, async () => ({ ok: true }))
app.listen({ port: +process.env.PORT! })
Fastify is among the fastest Node.js frameworks by design. We don't add any proxy overhead — raw requests hit your handlers.
@fastify/jwt, @fastify/cors, @fastify/postgres — every official and community plugin works as expected.
Fastify's schema-based serialisation runs at the app level. No build-time stripping or runtime surprises from the platform.
Fastify's type-safe plugin system and request/reply generics are fully supported through our TypeScript-aware build pipeline.