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

Detailed Comparison

Technical Analysis

featureComparison

Express is a traditional Node.js web framework with a flexible and modular design. Fastify is a fast and low-overhead framework that focuses on performance and scalability.

typescriptSupport

Both Express and Fastify support TypeScript. Express has built-in TypeScript definitions, while Fastify requires a separate installation of @types/fastify.

browserCompatibility

Neither Express nor Fastify is designed for client-side use, as they are server-side frameworks.

dependencies

Express has a smaller set of dependencies (6) compared to Fastify (14).

performance

Fastify is designed for high-performance and is significantly faster than Express in benchmarks.

Ecosystem Analysis

frameworkCompatibility

Both Express and Fastify are compatible with popular Node.js frameworks like Next.js and Nuxt.js.

communityActivity

Express has a larger and more active community, with more GitHub stars and contributors.

documentationQuality

Both Express and Fastify have high-quality documentation, with Express having a more comprehensive guide.

maintenanceStatus

Both Express and Fastify are actively maintained, with regular updates and releases.

Performance Comparison

bundleSizeAnalysis

Fastify has a significantly smaller bundle size compared to Express.

runtimePerformance

Fastify is faster than Express in runtime performance benchmarks.

loadingTime

Fastify has a faster loading time compared to Express.

memoryUsage

Fastify uses less memory compared to Express.

Code Examples

Hello World with Express

1const express = require('express');
2const app = express();
3app.get('/', (req, res) => {
4  res.send('Hello World!');
5});
6app.listen(3000, () => {
7  console.log('Server started on port 3000');
8});

This code creates an Express app that listens on port 3000 and responds with 'Hello World!' to GET requests to the root URL.

Hello World with Fastify

1const fastify = require('fastify')();
2fastify.get('/', async (request, reply) => {
3  return 'Hello World!';
4});
5fastify.listen(3000, (err, address) => {
6  if (err) throw err;
7  console.log(`Server listening on ${address}`);
8});

This code creates a Fastify app that listens on port 3000 and responds with 'Hello World!' to GET requests to the root URL.

Recommendation

Summary

Choose Express for its flexibility and large community, or Fastify for its high performance and low overhead.

Details

  • Express is a good choice for complex, modular applications.
  • Fastify is ideal for high-traffic, real-time applications.

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

Express Logo

Fast, unopinionated, minimalist web framework for Node.js.

This project has a Code of Conduct.

Table of contents

  • Installation
  • Features
  • Docs & Community
  • Quick Start
  • Running Tests
  • Philosophy
  • Examples
  • Contributing to Express
  • TC (Technical Committee)
  • Triagers
  • License

NPM Version NPM Downloads OpenSSF Scorecard Badge

import express from 'express' const app = express() app.get('/', (req, res) => { res.send('Hello World') }) app.listen(3000)

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 18 or higher is required.

If this is a brand new project, make sure to create a package.json first with the npm init command.

Installation is done using the npm install command:

npm install express

Follow our installing guide for more information.

Features

  • Robust routing
  • Focus on high performance
  • Super-high test coverage
  • HTTP helpers (redirection, caching, etc)
  • View system supporting 14+ template engines
  • Content negotiation
  • Executable for generating applications quickly

Docs & Community

  • Website and Documentation - [website repo]
  • GitHub Organization for Official Middleware & Modules
  • Github Discussions for discussion on the development and usage of Express

PROTIP Be sure to read the migration guide to v5

Quick Start

The quickest way to get started with express is to utilize the executable express(1) to generate an application as shown below:

Install the executable. The executable's major version will match Express's:

npm install -g express-generator@4

Create the app:

express /tmp/foo && cd /tmp/foo

Install dependencies:

npm install

Start the server:

npm start

View the website at: http://localhost:3000

Philosophy

The Express philosophy is to provide small, robust tooling for HTTP servers, making it a great solution for single page applications, websites, hybrids, or public HTTP APIs.

Express does not force you to use any specific ORM or template engine. With support for over 14 template engines via @ladjs/consolidate, you can quickly craft your perfect framework.

Examples

To view the examples, clone the Express repository:

git clone https://github.com/expressjs/express.git --depth 1 && cd express

Then install the dependencies:

npm install

Then run whichever example you want:

node examples/content-negotiation

Contributing

Linux Build Test Coverage

The Express.js project welcomes all constructive contributions. Contributions take many forms, from code for bug fixes and enhancements, to additions and fixes to documentation, additional tests, triaging incoming pull requests and issues, and more!

See the Contributing Guide for more technical details on contributing.

Security Issues

If you discover a security vulnerability in Express, please see Security Policies and Procedures.

Running Tests

To run the test suite, first install the dependencies:

npm install

Then run npm test:

npm test

People

The original author of Express is TJ Holowaychuk

List of all contributors

TC (Technical Committee)

  • UlisesGascon - Ulises Gascón (he/him)
  • jonchurch - Jon Church
  • wesleytodd - Wes Todd
  • LinusU - Linus Unnebäck
  • blakeembrey - Blake Embrey
  • sheplu - Jean Burellier
  • crandmck - Rand McKinney
  • ctcpip - Chris de Almeida
<details> <summary>TC emeriti members</summary>

TC emeriti members

  • dougwilson - Douglas Wilson
  • hacksparrow - Hage Yaapa
  • jonathanong - jongleberry
  • niftylettuce - niftylettuce
  • troygoode - Troy Goode
</details>

Triagers

  • aravindvnair99 - Aravind Nair
  • bjohansebas - Sebastian Beltran
  • carpasse - Carlos Serrano
  • CBID2 - Christine Belzie
  • dpopp07 - Dustin Popp
  • UlisesGascon - Ulises Gascón (he/him)
  • 3imed-jaberi - Imed Jaberi
  • IamLizu - S M Mahmudul Hasan (he/him)
  • Phillip9587 - Phillip Barta
  • Sushmeet - Sushmeet Sunger
  • rxmarbles Rick Markins (He/him)
<details> <summary>Triagers emeriti members</summary>

Emeritus Triagers

  • AuggieH - Auggie Hudak
  • G-Rath - Gareth Jones
  • MohammadXroid - Mohammad Ayashi
  • NawafSwe - Nawaf Alsharqi
  • NotMoni - Moni
  • VigneshMurugan - Vignesh Murugan
  • davidmashe - David Ashe
  • digitaIfabric - David
  • e-l-i-s-e - Elise Bonner
  • fed135 - Frederic Charette
  • firmanJS - Firman Abdul Hakim
  • getspooky - Yasser Ameur
  • ghinks - Glenn
  • ghousemohamed - Ghouse Mohamed
  • gireeshpunathil - Gireesh Punathil
  • jake32321 - Jake Reed
  • jonchurch - Jon Church
  • lekanikotun - Troy Goode
  • marsonya - Lekan Ikotun
  • mastermatt - Matt R. Wilson
  • maxakuru - Max Edell
  • mlrawlings - Michael Rawlings
  • rodion-arr - Rodion Abdurakhimov
  • sheplu - Jean Burellier
  • tarunyadav1 - Tarun yadav
  • tunniclm - Mike Tunnicliffe
  • enyoghasim - David Enyoghasim
  • 0ss - Salah
  • import-brain - Eric Cheng (he/him)
  • dakshkhetan - Daksh Khetan (he/him)
  • lucasraziel - Lucas Soares Do Rego
  • mertcanaltin - Mert Can Altin
</details>

License

MIT

<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
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.0
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.0
supertest^6.3.0
connect-redis^8.0.1
cookie-parser1.4.7
cookie-session2.1.0
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^9.0.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

@fastify/pre-commit^2.1.0
@jsumners/line-reporter^1.0.1
@sinclair/typebox^0.34.13
@sinonjs/fake-timers^11.2.2
@stylistic/eslint-plugin^4.1.0
@stylistic/eslint-plugin-js^4.1.0
@types/node^22.0.0
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.20.0
branch-comparer^1.1.0
concurrently^9.1.2
cross-env^7.0.3
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^17.12.3
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
simple-get^4.0.1
split2^4.2.0
tsd^0.32.0
typescript~5.8.2
undici^6.13.0
vary^1.1.2
yup^1.4.0

Peer Dependencies

Who's Using These Packages

express

pixel-editor
pixel-editor

An online canvas based Pixel Art creation tool for Lospec.com

vue-blog-demo
vue-blog-demo

A Vue.js blog demo to demonstrate proper decoupling of api data and swapping of resources/providers

Mixly_Arduino
Mixly_Arduino

A visual programming editor based on blockly for Arduino、Microbit、MicroPython、Python

QTGate-Desktop-Client
QTGate-Desktop-Client

A revolutionary internet infrastructure enabling a truly free Network, that offers Stability, Trust, Privacy, and Security

WhoDoTheyServe.com
WhoDoTheyServe.com

Source code for

fastify

aws-lambda-fastify
aws-lambda-fastify

Insipired by aws-serverless-express to work with Fastify with inject functionality

create-gramio
create-gramio

Scaffolding your GramIO project with the environment with easy!