mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
2.1 KiB
2.1 KiB
layout, title, description, menu, redirect_from
| layout | title | description | menu | redirect_from |
|---|---|---|---|---|
| home | Express - Node.js web application framework | Express is a fast, unopinionated, minimalist web framework for Node.js, providing a robust set of features for web and mobile applications. | home | /en/index.html |
Fast, unopinionated, minimalist web framework for Node.js
$ npm install express --save
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})
{% if site.announcement %}