NPM Star
Collections
  1. Home
  2. Compare
  3. express vs fastify
NPM Compare

Compare NPM packages statistics, trends, and features

CollectionsVS Code extensionChrome extensionTermsPrivacyLinkTreeIndiehackersBig Frontendqiuyumi

Express vs Fastify: Node.js Web Framework Showdown

Express and Fastify are both popular frameworks for building web servers in Node.js. Express is the older, more established option that's beginner-friendly and has a huge collection of plugins. Fastify is the newer, faster alternative that's built with modern JavaScript features in mind. They both help developers create web APIs and handle web requests, but take different approaches to speed and ease of use.

Web Server Frameworksnode.jsserverweb-frameworkbackendapi

Unable to load comparison data. Please try again later.

Similar Packages

Polka

95%

A tiny web framework that's basically a smaller version of Express. It's super fast and uses the same middleware pattern that Express uses.

Perfect when you want something as simple as Express but even faster and smaller. It's compatible with most Express middleware, so you can still use the tools you know.

Web Framework

Koa

90%

A lightweight web framework created by the Express team. It uses modern JavaScript features like async/await and has a smaller, more flexible design that uses plugins (called middleware) to add features.

Perfect for developers who like Express but want something more modern. It's easier to write clean code with Koa because of its async/await support, and it's less confusing for beginners because it has fewer built-in features.

Web Framework

Hapi

85%

A rich framework focused on writing services with built-in support for input validation, caching, and authentication. It was created by Walmart Labs to handle Black Friday traffic.

Good choice when you need a framework with more built-in features than Express. It's especially good for building APIs and microservices that need to be really reliable.

Web Framework

NestJS

80%

A structured framework that uses TypeScript and is inspired by Angular. It helps you build organized server applications with features like dependency injection and decorators built-in.

Great for bigger projects that need more organization. If you're coming from Angular or like TypeScript, you'll feel right at home. It actually uses Express under the hood by default.

Web Framework

restify

75%

A framework specifically designed for building REST API services. It's similar to Express but focuses only on API features, making it simpler for that specific use case.

Great choice when you're only building an API and don't need website-related features. It's optimized for building and managing API endpoints.

Web Framework

No README available

<div align="center"> <a href="https://fastify.dev/"> <img src="https://github.com/fastify/graphics/raw/HEAD/fastify-landscape-outlined.svg" width="650" height="auto" /> </a> </div> <div align="center">

CI Package Manager
CI Web
site neostandard javascript style CII Best Practices

</div> <div align="center">

NPM
version NPM
downloads Security Responsible
Disclosure Discord Contribute with Gitpod Open Collective backers and sponsors

</div> <br />

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
  • Install
  • Example
  • Core features
  • Benchmarks
  • Documentation
  • Ecosystem
  • Support
  • Team
  • Hosted by
  • License

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 <a href="./docs/Guides/Getting-Started.md"><code><b>Getting Started</b></code></a>. If you learn best by reading code, explore the official demo.

Note

.listen binds to the local host, localhost, interface by default (127.0.0.1 or ::1, depending on the operating system configuration). If you are running Fastify in a container (Docker, GCP, etc.), you may need to bind to 0.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

| Framework | Version | Router? | Requests/sec | | :----------------- | :------------------------- | :----------: | ------------: | | Express | 4.17.3 | ✓ | 14,200 | | hapi | 20.2.1 | ✓ | 42,284 | | Restify | 8.6.1 | ✓ | 50,363 | | Koa | 2.13.0 | ✗ | 54,272 | | Fastify | 4.0.0 | ✓ | 77,193 | | - | | | | | http.Server | 16.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

  • Getting Started
  • Guides
  • Server
  • Routes
  • Encapsulation
  • Logging
  • Middleware
  • Hooks
  • Decorators
  • Validation and Serialization
  • Fluent Schema
  • Lifecycle
  • Reply
  • Request
  • Errors
  • Content Type Parser
  • Plugins
  • Testing
  • Benchmarking
  • How to write a good plugin
  • Plugins Guide
  • HTTP2
  • Long Term Support
  • TypeScript and types support
  • Serverless
  • Recommendations

Ecosystem

  • Core - Core plugins maintained by the Fastify team.
  • 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://twitter.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Tomas Della Vedova, https://twitter.com/delvedor, https://www.npmjs.com/~delvedor
  • KaKa Ng, https://www.npmjs.com/~climba03003
  • Manuel Spigolon, https://twitter.com/manueomm, https://www.npmjs.com/~eomm
  • James Sumners, https://twitter.com/jsumners79, https://www.npmjs.com/~jsumners

Fastify Core team

  • Aras Abbasi, https://www.npmjs.com/~uzlopak
  • Harry Brundage, https://twitter.com/harrybrundage, https://www.npmjs.com/~airhorns
  • Matteo Collina, https://twitter.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Gürgün Dayıoğlu, https://www.npmjs.com/~gurgunday
  • Tomas Della Vedova, https://twitter.com/delvedor, https://www.npmjs.com/~delvedor
  • Carlos Fuentes, https://twitter.com/metcoder95, https://www.npmjs.com/~metcoder95
  • Vincent Le Goff
  • Luciano Mammino, https://twitter.com/loige, https://www.npmjs.com/~lmammino
  • Jean Michelet, https://www.npmjs.com/~jean-michelet
  • KaKa Ng, https://www.npmjs.com/~climba03003
  • Luis Orbaiceta, https://twitter.com/luisorbai, https://www.npmjs.com/~luisorbaiceta
  • Maksim Sinik, https://twitter.com/maksimsinik, https://www.npmjs.com/~fox1t
  • Manuel Spigolon, https://twitter.com/manueomm, https://www.npmjs.com/~eomm
  • James Sumners, https://twitter.com/jsumners79, https://www.npmjs.com/~jsumners

Fastify Plugins team

  • Harry Brundage, https://twitter.com/harrybrundage, https://www.npmjs.com/~airhorns
  • Simone Busoli, https://twitter.com/simonebu, https://www.npmjs.com/~simoneb
  • Dan Castillo, https://www.npmjs.com/~dancastillo
  • Matteo Collina, https://twitter.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Gürgün Dayıoğlu, https://www.npmjs.com/~gurgunday
  • Tomas Della Vedova, https://twitter.com/delvedor, https://www.npmjs.com/~delvedor
  • Carlos Fuentes, https://twitter.com/metcoder95, https://www.npmjs.com/~metcoder95
  • Vincent Le Goff
  • Jean Michelet, https://www.npmjs.com/~jean-michelet
  • KaKa Ng, https://www.npmjs.com/~climba03003
  • Maksim Sinik, https://twitter.com/maksimsinik, https://www.npmjs.com/~fox1t
  • Frazer Smith, https://www.npmjs.com/~fdawgs
  • Manuel Spigolon, https://twitter.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://twitter.com/allevitommaso, https://www.npmjs.com/~allevo
  • Ethan Arrowood, https://twitter.com/arrowoodtech, https://www.npmjs.com/~ethan_arrowood
  • Çağatay Çalı, https://twitter.com/cagataycali, https://www.npmjs.com/~cagataycali
  • David Mark Clements, https://twitter.com/davidmarkclem, https://www.npmjs.com/~davidmarkclements
  • dalisoft, https://twitter.com/dalisoft, https://www.npmjs.com/~dalisoft
  • Dustin Deus, https://twitter.com/dustindeus, https://www.npmjs.com/~starptech
  • Denis Fäcke, https://twitter.com/serayaeryn, https://www.npmjs.com/~serayaeryn
  • Rafael Gonzaga, https://twitter.com/_rafaelgss, https://www.npmjs.com/~rafaelgss
  • Trivikram Kamat, https://twitter.com/trivikram, https://www.npmjs.com/~trivikr
  • Ayoub El Khattabi, https://twitter.com/ayoubelkh, https://www.npmjs.com/~ayoubelk
  • Cemre Mengu, https://twitter.com/cemremengu, https://www.npmjs.com/~cemremengu
  • Salman Mitha, https://www.npmjs.com/~salmanm
  • Nathan Woltman, https://twitter.com/NathanWoltman, https://www.npmjs.com/~nwoltman

Hosted by

<img src="https://github.com/openjs-foundation/artwork/blob/main/openjs_foundation/openjs_foundation-logo-horizontal-color.png?raw=true" width="250px;"/>

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:

  • NearForm
  • Platformatic

Past Sponsors:

  • LetzDoIt

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

Dependencies Comparison

express

Dependencies

qs^6.14.0
depd^2.0.0
etag^1.8.1
once^1.4.0
send^1.1.0
vary^1.1.2
debug^4.4.0
fresh^2.0.0
cookie^0.7.1
router^2.2.0
accepts^2.0.0
type-is^2.0.1
parseurl^1.3.3
statuses^2.0.1
encodeurl^2.0.0
mime-types^3.0.0
proxy-addr^2.0.7
body-parser^2.2.1
escape-html^1.0.3
http-errors^2.0.0
on-finished^2.4.1
content-type^1.0.5
finalhandler^2.1.0
range-parser^1.2.1
serve-static^2.2.0
cookie-signature^1.2.1
merge-descriptors^2.0.0
content-disposition^1.0.0

Dev Dependencies

ejs^3.1.10
hbs4.2.0
nyc^17.1.0
after0.8.2
mocha^10.7.3
vhost~3.0.2
eslint8.47.0
marked^15.0.3
morgan1.10.1
supertest^6.3.0
connect-redis^8.0.1
cookie-parser1.4.7
cookie-session2.1.1
express-session^1.18.1
method-override3.0.0
pbkdf2-password1.2.1

Peer Dependencies

fastify

Dependencies

@fastify/ajv-compiler^4.0.0
@fastify/error^4.0.0
@fastify/fast-json-stringify-compiler^5.0.0
@fastify/proxy-addr^5.0.0
abstract-logging^2.0.1
avvio^9.0.0
fast-json-stringify^6.0.0
find-my-way^9.0.0
light-my-request^6.0.0
pino^10.1.0
process-warning^5.0.0
rfdc^1.3.1
secure-json-parse^4.0.0
semver^7.6.0
toad-cache^3.7.0

Dev Dependencies

@jsumners/line-reporter^1.0.1
@sinclair/typebox^0.34.13
@sinonjs/fake-timers^11.2.2
@stylistic/eslint-plugin^5.1.0
@stylistic/eslint-plugin-js^4.1.0
@types/node^24.0.12
ajv^8.12.0
ajv-errors^3.0.0
ajv-formats^3.0.1
ajv-i18n^4.2.0
ajv-merge-patch^5.0.1
autocannon^8.0.0
borp^0.21.0
branch-comparer^1.1.0
concurrently^9.1.2
cross-env^10.0.0
eslint^9.0.0
fast-json-body^1.1.0
fastify-plugin^5.0.0
fluent-json-schema^6.0.0
h2url^0.2.0
http-errors^2.0.0
joi^18.0.1
json-schema-to-ts^3.0.1
JSONStream^1.3.5
markdownlint-cli2^0.18.1
neostandard^0.12.0
node-forge^1.3.1
proxyquire^2.1.3
split2^4.2.0
tsd^0.33.0
typescript~5.9.2
undici^7.11.0
vary^1.1.2
yup^1.4.0

Peer Dependencies

StarsIssuesVersionUpdatedⓘLast publish dateCreatedⓘPackage creation dateSizeⓘMinified + Gzipped size
E
express
68,3092205.2.1a month ago15 years agoinstall size N/A
F
fastify
35,1461075.6.2a month ago9 years agoinstall size N/A