Express.js

JavaScript framework From Wikipedia, the free encyclopedia

Express.js, or simply Express, is a back end web application framework for Node.js, released as free and open-source software under the MIT License. It is designed for building web applications and APIs.[2] It has been called the de facto standard server framework for Node.js.[3]

Original authorTJ Holowaychuk
Initial release16 November 2010; 15 years ago (2010-11-16)
Stable release
5.2.1 / December 1, 2025; 3 months ago[1] Edit this on Wikidata
Quick facts Original author, Developers ...
Express.js
Original authorTJ Holowaychuk
DevelopersOpenJS Foundation and others
Initial release16 November 2010; 15 years ago (2010-11-16)
Stable release
5.2.1 / December 1, 2025; 3 months ago[1] Edit this on Wikidata
Written inJavaScript
PlatformNode.js
TypeWeb framework
LicenseMIT License
Websiteexpressjs.com Edit this on Wikidata
Repository
Close

The original author, TJ Holowaychuk, described it as a Sinatra-inspired server,[4] meaning that it is relatively minimal with many features available as plugins. Express is the back-end component of popular development stacks like the MEAN, MERN or MEVN stack, together with the MongoDB database software and a JavaScript front-end framework or library.[5]

History

Express.js was founded by TJ Holowaychuk. The initial versions were created in early 2010, and milestone version 1 was released later that year.[6]

In June 2014, rights to manage the project were acquired by StrongLoop.[7] StrongLoop was acquired by IBM in September 2015;[8] in January 2016, IBM announced that it would place Express.js under the stewardship of the Node.js Foundation incubator.[9]

In July 2014, work began towards milestone version 5. After ten years of development it was released in October 2024.[10]

Features

Popularity

Express.js is used by Fox Sports, PayPal, Uber and IBM.[13]

Example

The following program will respond to HTTP GET requests with the text "Hi, your request has been received", and listen to the port the program is running on (in this case, port 2000).

// Importing the Express library.
const express = require('express');

// Initializing the app.
const app = express();

// Getting the path request and sending the response with text.
app.get('/', (req, res) => {
    res.send('Hi, your request has been received');
});

// Listening on port 2000.
app.listen(2000, () => {
    console.log('listening at http://localhost:2000');
});

See also

References

Related Articles

Wikiwand AI