fastify
Fastify is a high-performance Node.js web framework built around a powerful plugin/encapsulation architecture and JSON Schema-based validation and serialization. It aims to minimize per-request overhead while keeping a clean, developer-friendly API for building HTTP APIs and services.
MITPermissive — free to use in commercial and proprietary software, with attribution.View license →
Production readiness
4/5- Actively maintainedCommits in the last 6 months
- No known vulnerabilities10 known OSV advisories
- Clear, usable licenseMIT (permissive)
- Proven adoptionWidely used
- Has documentationDocumentation indexed
npm install fastifyOur analysis
Fastify is a Node.js web framework focused on low overhead and high throughput, combining a schema-driven approach to request validation/response serialization with an encapsulated plugin system.
When to use fastify
Choose Fastify when building HTTP APIs or microservices in Node.js where request throughput, low latency, and structured validation matter. Its JSON Schema integration is ideal for well-defined contracts, and its plugin/encapsulation model scales cleanly across large modular codebases. Strong TypeScript support and built-in Pino logging make it a solid default for new production services.
When not to
If you have an existing Express codebase with heavy reliance on Express-specific middleware, migrating may not be worth it. For very small scripts or one-off endpoints, a minimal framework or raw http may suffice. Teams wanting a fully opinionated, batteries-included architecture with DI and decorators may prefer NestJS; those targeting edge/runtime-agnostic deployment may prefer Hono.
Strengths
- Excellent benchmark performance with low framework overhead
- JSON Schema validation and fast compiled serialization built in
- Mature plugin architecture with encapsulation for clean modularity
- First-class TypeScript types and integrated structured logging via Pino
- Large ecosystem of official and community plugins
Trade-offs
- Schema-first patterns and plugin encapsulation have a learning curve compared to Express
- Express middleware is not directly compatible (requires adapters)
- Plugin loading order and decorators can confuse newcomers
- Older major versions reach EOL and require paid support for continued security fixes
Maturity
Very mature and production-proven, with ~36k stars, an active core/plugins team led by experienced maintainers (Matteo Collina et al.), defined LTS policy, and a broad plugin ecosystem. Currently on v5.
An efficient server implies a lower cost of the infrastructure, better responsiveness under load, and happy users. How can you efficiently handle the resources of your server, knowing that you are serving the highest number of requests possible, without sacrificing security validations and handy development?
Enter Fastify. Fastify is a web framework highly focused on providing the best developer experience with the least overhead and a powerful plugin architecture. It is inspired by Hapi and Express and as far as we know, it is one of the fastest web frameworks in town.
The main branch refers to the Fastify v5 release.
Check out the 4.x branch for v4.
Table of Contents
Quick start
Create a folder and make it your current working directory:
mkdir my-app
cd my-app
Generate a fastify project with npm init:
npm init fastify
Install dependencies:
npm i
To start the app in dev mode:
npm run dev
For production mode:
npm start
Under the hood npm init downloads and runs Fastify
Create, which in turn uses the
generate functionality of Fastify CLI.
Install
To install Fastify in an existing project as a dependency:
npm i fastify
Example
// Require the framework and instantiate it
// ESM
import Fastify from 'fastify'
const fastify = Fastify({
logger: true
})
// CommonJs
const fastify = require('fastify')({
logger: true
})
// Declare a route
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' })
})
// Run the server!
fastify.listen({ port: 3000 }, (err, address) => {
if (err) throw err
// Server is now listening on ${address}
})
With async-await:
// ESM
import Fastify from 'fastify'
const fastify = Fastify({
logger: true
})
// CommonJs
const fastify = require('fastify')({
logger: true
})
fastify.get('/', async (request, reply) => {
reply.type('application/json').code(200)
return { hello: 'world' }
})
fastify.listen({ port: 3000 }, (err, address) => {
if (err) throw err
// Server is now listening on ${address}
})
Do you want to know more? Head to the Getting Started. If you learn best by reading code, explore the official demo.
Note
.listenbinds to the local host,localhost, interface by default (127.0.0.1or::1, depending on the operating system configuration). If you are running Fastify in a container (Docker, GCP, etc.), you may need to bind to0.0.0.0. Be careful when listening on all interfaces; it comes with inherent security risks. See the documentation for more information.
Core features
Highly performant: as far as we know, Fastify is one of the fastest web frameworks in town, depending on the code complexity we can serve up to 76+ thousand requests per second.
Extensible: Fastify is fully extensible via its hooks, plugins, and decorators.
Schema-based: even if it is not mandatory we recommend using JSON Schema to validate your routes and serialize your outputs. Internally Fastify compiles the schema in a highly performant function.
Logging: logs are extremely important but are costly; we chose the best logger to almost remove this cost, Pino!
Developer friendly: the framework is built to be very expressive and help developers in their daily use without sacrificing performance and security.
Benchmarks
Machine: EX41S-SSD, Intel Core i7, 4Ghz, 64GB RAM, 4C/8T, SSD.
Method: autocannon -c 100 -d 40 -p 10 localhost:3000 * 2, taking the
second average
FrameworkVersionRouter?Requests/secExpress4.17.3✓14,200hapi20.2.1✓42,284Restify8.6.1✓50,363Koa2.13.0✗54,272Fastify4.0.0✓77,193-http.Server16.14.2✗74,513
These benchmarks taken using https://github.com/fastify/benchmarks. This is a synthetic "hello world" benchmark that aims to evaluate the framework overhead. The overhead that each framework has on your application depends on your application. You should always benchmark if performance matters to you.
Documentation
Ecosystem
Community - Community-supported plugins.
Live Examples - Multirepo with a broad set of real working examples.
Discord - Join our discord server and chat with the maintainers.
Support
Please visit Fastify help to view prior support issues and to ask new support questions.
Version 3 of Fastify and lower are EOL and will not receive any security or bug fixes.
Fastify's partner, HeroDevs, provides commercial security fixes for all unsupported versions at https://herodevs.com/support/fastify-nes. Fastify's supported version matrix is available in the Long Term Support documentation.
Contributing
Whether reporting bugs, discussing improvements and new ideas, or writing code, we welcome contributions from anyone and everyone. Please read the CONTRIBUTING guidelines before submitting pull requests.
Team
Fastify is the result of the work of a great community. Team members are listed in alphabetical order.
Lead Maintainers:
Matteo Collina, https://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
Manuel Spigolon, https://x.com/manueomm, https://www.npmjs.com/~eomm
James Sumners, https://x.com/jsumners79, https://www.npmjs.com/~jsumners
Fastify Core team
Harry Brundage, https://x.com/harrybrundage, https://www.npmjs.com/~airhorns
Matteo Collina, https://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
Carlos Fuentes, https://x.com/metcoder95, https://www.npmjs.com/~metcoder95
Luciano Mammino, https://x.com/loige, https://www.npmjs.com/~lmammino
Luis Orbaiceta, https://x.com/luisorbai, https://www.npmjs.com/~luisorbaiceta
Maksim Sinik, https://x.com/maksimsinik, https://www.npmjs.com/~fox1t
Manuel Spigolon, https://x.com/manueomm, https://www.npmjs.com/~eomm
James Sumners, https://x.com/jsumners79, https://www.npmjs.com/~jsumners
Fastify Plugins team
Harry Brundage, https://x.com/harrybrundage, https://www.npmjs.com/~airhorns
Simone Busoli, https://x.com/simonebu, https://www.npmjs.com/~simoneb
Matteo Collina, https://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
Carlos Fuentes, https://x.com/metcoder95, https://www.npmjs.com/~metcoder95
Maksim Sinik, https://x.com/maksimsinik, https://www.npmjs.com/~fox1t
Manuel Spigolon, https://x.com/manueomm, https://www.npmjs.com/~eomm
Emeritus Contributors
Great contributors to a specific area of the Fastify ecosystem will be invited to join this group by Lead Maintainers when they decide to step down from the active contributor's group.
Tommaso Allevi, https://x.com/allevitommaso, https://www.npmjs.com/~allevo
Ethan Arrowood, https://x.com/arrowoodtech, https://www.npmjs.com/~ethan_arrowood
Çağatay Çalı, https://x.com/cagataycali, https://www.npmjs.com/~cagataycali
David Mark Clements, https://x.com/davidmarkclem, https://www.npmjs.com/~davidmarkclements
dalisoft, https://x.com/dalisoft, https://www.npmjs.com/~dalisoft
Dustin Deus, https://x.com/dustindeus, https://www.npmjs.com/~starptech
Denis Fäcke, https://x.com/serayaeryn, https://www.npmjs.com/~serayaeryn
Rafael Gonzaga, https://x.com/_rafaelgss, https://www.npmjs.com/~rafaelgss
Trivikram Kamat, https://x.com/trivikram, https://www.npmjs.com/~trivikr
Ayoub El Khattabi, https://x.com/ayoubelkh, https://www.npmjs.com/~ayoubelk
Cemre Mengu, https://x.com/cemremengu, https://www.npmjs.com/~cemremengu
Nathan Woltman, https://x.com/NathanWoltman, https://www.npmjs.com/~nwoltman
Hosted by
We are an At-Large Project in the OpenJS Foundation.
Sponsors
Support this project by becoming a SPONSOR! Fastify has an Open Collective page where we accept and manage financial contributions.
Acknowledgments
This project is kindly sponsored by:
Past Sponsors:
This list includes all companies that support one or more team members in maintaining this project.
License
Licensed under MIT.
For your convenience, here is a list of all the licenses of our production dependencies:
MIT
ISC
BSD-3-Clause
BSD-2-Clause