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

Unable to load comparison data. Please try again later.

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://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
  • KaKa Ng, https://www.npmjs.com/~climba03003
  • 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

  • Aras Abbasi, https://www.npmjs.com/~uzlopak
  • Harry Brundage, https://x.com/harrybrundage, https://www.npmjs.com/~airhorns
  • Matteo Collina, https://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Gürgün Dayıoğlu, https://www.npmjs.com/~gurgunday
  • Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
  • Carlos Fuentes, https://x.com/metcoder95, https://www.npmjs.com/~metcoder95
  • Vincent Le Goff
  • Luciano Mammino, https://x.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://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
  • Dan Castillo, https://www.npmjs.com/~dancastillo
  • Matteo Collina, https://x.com/matteocollina, https://www.npmjs.com/~matteo.collina
  • Gürgün Dayıoğlu, https://www.npmjs.com/~gurgunday
  • Tomas Della Vedova, https://x.com/delvedor, https://www.npmjs.com/~delvedor
  • Carlos Fuentes, https://x.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://x.com/maksimsinik, https://www.npmjs.com/~fox1t
  • Frazer Smith, https://www.npmjs.com/~fdawgs
  • Manuel Spigolon, https://x.com/manueomm, https://www.npmjs.com/~eomm
  • Antonio Tripodi, https://www.npmjs.com/~tony133

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
  • Salman Mitha, https://www.npmjs.com/~salmanm
  • Nathan Woltman, https://x.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.5
@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^9.14.0 || ^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
@sinonjs/fake-timers^11.2.2
@stylistic/eslint-plugin^5.1.0
@stylistic/eslint-plugin-js^4.1.0
@types/node^25.0.3
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^1.0.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.22.0
neostandard^0.12.0
node-forge^1.3.1
proxyquire^2.1.3
split2^4.2.0
tsd^0.33.0
typebox^1.0.81
typescript~6.0.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
69,0772175.2.1a month ago16 years agoinstall size 236.1 KB
F
fastify
36,3661475.8.52 months ago10 years agoinstall size 129.8 KB