5.x API Reference

This section provides an overview of the modules and APIs available in Express 5.x for building web applications and HTTP services.

index.cjs
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('hello world');
});
app.listen(3000);