Link and update captains (#6013)
[express.git] / Readme.md
blob32c0c7430d30e1c8b778e187067e42098c9377bc
1 [![Express Logo](https://i.cloudup.com/zfY6lL7eFa-3000x3000.png)](http://expressjs.com/)
3 **Fast, unopinionated, minimalist web framework for [Node.js](http://nodejs.org).**
5 **This project has a [Code of Conduct][].**
7 ## Table of contents
9 * [Installation](#Installation)
10 * [Features](#Features)
11 * [Docs & Community](#docs--community)
12 * [Quick Start](#Quick-Start)
13 * [Running Tests](#Running-Tests)
14 * [Philosophy](#Philosophy)
15 * [Examples](#Examples)
16 * [Contributing to Express](#Contributing)
17 * [TC (Technical Committee)](#tc-technical-committee)
18 * [Triagers](#triagers)
19 * [License](#license)
22 [![NPM Version][npm-version-image]][npm-url]
23 [![NPM Install Size][npm-install-size-image]][npm-install-size-url]
24 [![NPM Downloads][npm-downloads-image]][npm-downloads-url]
25 [![OpenSSF Scorecard Badge][ossf-scorecard-badge]][ossf-scorecard-visualizer]
28 ```js
29 const express = require('express')
30 const app = express()
32 app.get('/', function (req, res) {
33   res.send('Hello World')
36 app.listen(3000)
37 ```
39 ## Installation
41 This is a [Node.js](https://nodejs.org/en/) module available through the
42 [npm registry](https://www.npmjs.com/).
44 Before installing, [download and install Node.js](https://nodejs.org/en/download/).
45 Node.js 0.10 or higher is required.
47 If this is a brand new project, make sure to create a `package.json` first with
48 the [`npm init` command](https://docs.npmjs.com/creating-a-package-json-file).
50 Installation is done using the
51 [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
53 ```console
54 $ npm install express
55 ```
57 Follow [our installing guide](http://expressjs.com/en/starter/installing.html)
58 for more information.
60 ## Features
62   * Robust routing
63   * Focus on high performance
64   * Super-high test coverage
65   * HTTP helpers (redirection, caching, etc)
66   * View system supporting 14+ template engines
67   * Content negotiation
68   * Executable for generating applications quickly
70 ## Docs & Community
72   * [Website and Documentation](http://expressjs.com/) - [[website repo](https://github.com/expressjs/expressjs.com)]
73   * [#express](https://web.libera.chat/#express) on [Libera Chat](https://libera.chat) IRC
74   * [GitHub Organization](https://github.com/expressjs) for Official Middleware & Modules
75   * Visit the [Wiki](https://github.com/expressjs/express/wiki)
76   * [Google Group](https://groups.google.com/group/express-js) for discussion
77   * [Gitter](https://gitter.im/expressjs/express) for support and discussion
79 **PROTIP** Be sure to read [Migrating from 3.x to 4.x](https://github.com/expressjs/express/wiki/Migrating-from-3.x-to-4.x) as well as [New features in 4.x](https://github.com/expressjs/express/wiki/New-features-in-4.x).
81 ## Quick Start
83   The quickest way to get started with express is to utilize the executable [`express(1)`](https://github.com/expressjs/generator) to generate an application as shown below:
85   Install the executable. The executable's major version will match Express's:
87 ```console
88 $ npm install -g express-generator@4
89 ```
91   Create the app:
93 ```console
94 $ express /tmp/foo && cd /tmp/foo
95 ```
97   Install dependencies:
99 ```console
100 $ npm install
103   Start the server:
105 ```console
106 $ npm start
109   View the website at: http://localhost:3000
111 ## Philosophy
113   The Express philosophy is to provide small, robust tooling for HTTP servers, making
114   it a great solution for single page applications, websites, hybrids, or public
115   HTTP APIs.
117   Express does not force you to use any specific ORM or template engine. With support for over
118   14 template engines via [Consolidate.js](https://github.com/tj/consolidate.js),
119   you can quickly craft your perfect framework.
121 ## Examples
123   To view the examples, clone the Express repo and install the dependencies:
125 ```console
126 $ git clone https://github.com/expressjs/express.git --depth 1
127 $ cd express
128 $ npm install
131   Then run whichever example you want:
133 ```console
134 $ node examples/content-negotiation
137 ## Contributing
139   [![Linux Build][github-actions-ci-image]][github-actions-ci-url]
140   [![Windows Build][appveyor-image]][appveyor-url]
141   [![Test Coverage][coveralls-image]][coveralls-url]
143 The Express.js project welcomes all constructive contributions. Contributions take many forms,
144 from code for bug fixes and enhancements, to additions and fixes to documentation, additional
145 tests, triaging incoming pull requests and issues, and more!
147 See the [Contributing Guide](Contributing.md) for more technical details on contributing.
149 ### Security Issues
151 If you discover a security vulnerability in Express, please see [Security Policies and Procedures](Security.md).
153 ### Running Tests
155 To run the test suite, first install the dependencies, then run `npm test`:
157 ```console
158 $ npm install
159 $ npm test
162 ## People
164 The original author of Express is [TJ Holowaychuk](https://github.com/tj)
166 [List of all contributors](https://github.com/expressjs/express/graphs/contributors)
168 ### TC (Technical Committee)
170 * [UlisesGascon](https://github.com/UlisesGascon) - **Ulises Gascón** (he/him)
171 * [jonchurch](https://github.com/jonchurch) - **Jon Church**
172 * [wesleytodd](https://github.com/wesleytodd) - **Wes Todd**
173 * [LinusU](https://github.com/LinusU) - **Linus Unnebäck**
174 * [blakeembrey](https://github.com/blakeembrey) - **Blake Embrey**
175 * [sheplu](https://github.com/sheplu) - **Jean Burellier**
176 * [crandmck](https://github.com/crandmck) - **Rand McKinney**
177 * [ctcpip](https://github.com/ctcpip) - **Chris de Almeida**
179 <details>
180 <summary>TC emeriti members</summary>
182 #### TC emeriti members
184   * [dougwilson](https://github.com/dougwilson) - **Douglas Wilson**
185   * [hacksparrow](https://github.com/hacksparrow) - **Hage Yaapa**
186   * [jonathanong](https://github.com/jonathanong) - **jongleberry**
187   * [niftylettuce](https://github.com/niftylettuce) - **niftylettuce**
188   * [troygoode](https://github.com/troygoode) - **Troy Goode**
189 </details>
192 ### Triagers
194 * [aravindvnair99](https://github.com/aravindvnair99) - **Aravind Nair**
195 * [bjohansebas](https://github.com/bjohansebas) - **Sebastian Beltran**
196 * [carpasse](https://github.com/carpasse) - **Carlos Serrano**
197 * [CBID2](https://github.com/CBID2) - **Christine Belzie**
198 * [enyoghasim](https://github.com/enyoghasim) - **David Enyoghasim**
199 * [UlisesGascon](https://github.com/UlisesGascon) - **Ulises Gascón** (he/him)
200 * [mertcanaltin](https://github.com/mertcanaltin) - **Mert Can Altin**
201 * [0ss](https://github.com/0ss) - **Salah**
202 * [import-brain](https://github.com/import-brain) - **Eric Cheng** (he/him)
203 * [3imed-jaberi](https://github.com/3imed-jaberi) - **Imed Jaberi**
204 * [dakshkhetan](https://github.com/dakshkhetan) - **Daksh Khetan** (he/him)
205 * [lucasraziel](https://github.com/lucasraziel) - **Lucas Soares Do Rego**
206 * [IamLizu](https://github.com/IamLizu) - **S M Mahmudul Hasan** (he/him)
207 * [Sushmeet](https://github.com/Sushmeet) - **Sushmeet Sunger**
209 <details>
210 <summary>Triagers emeriti members</summary>
212 #### Emeritus Triagers
214   * [AuggieH](https://github.com/AuggieH) - **Auggie Hudak**
215   * [G-Rath](https://github.com/G-Rath) - **Gareth Jones**
216   * [MohammadXroid](https://github.com/MohammadXroid) - **Mohammad Ayashi**
217   * [NawafSwe](https://github.com/NawafSwe) - **Nawaf Alsharqi**
218   * [NotMoni](https://github.com/NotMoni) - **Moni**
219   * [VigneshMurugan](https://github.com/VigneshMurugan) - **Vignesh Murugan**
220   * [davidmashe](https://github.com/davidmashe) - **David Ashe**
221   * [digitaIfabric](https://github.com/digitaIfabric) - **David**
222   * [e-l-i-s-e](https://github.com/e-l-i-s-e) - **Elise Bonner**
223   * [fed135](https://github.com/fed135) - **Frederic Charette**
224   * [firmanJS](https://github.com/firmanJS) - **Firman Abdul Hakim**
225   * [getspooky](https://github.com/getspooky) - **Yasser Ameur**
226   * [ghinks](https://github.com/ghinks) - **Glenn**
227   * [ghousemohamed](https://github.com/ghousemohamed) - **Ghouse Mohamed**
228   * [gireeshpunathil](https://github.com/gireeshpunathil) - **Gireesh Punathil**
229   * [jake32321](https://github.com/jake32321) - **Jake Reed**
230   * [jonchurch](https://github.com/jonchurch) - **Jon Church**
231   * [lekanikotun](https://github.com/lekanikotun) - **Troy Goode**
232   * [marsonya](https://github.com/marsonya) - **Lekan Ikotun**
233   * [mastermatt](https://github.com/mastermatt) - **Matt R. Wilson**
234   * [maxakuru](https://github.com/maxakuru) - **Max Edell**
235   * [mlrawlings](https://github.com/mlrawlings) - **Michael Rawlings**
236   * [rodion-arr](https://github.com/rodion-arr) - **Rodion Abdurakhimov**
237   * [sheplu](https://github.com/sheplu) - **Jean Burellier**
238   * [tarunyadav1](https://github.com/tarunyadav1) - **Tarun yadav**
239   * [tunniclm](https://github.com/tunniclm) - **Mike Tunnicliffe**
240 </details>
243 ## License
245   [MIT](LICENSE)
247 [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/express/master?label=windows
248 [appveyor-url]: https://ci.appveyor.com/project/dougwilson/express
249 [coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/express/master
250 [coveralls-url]: https://coveralls.io/r/expressjs/express?branch=master
251 [github-actions-ci-image]: https://badgen.net/github/checks/expressjs/express/master?label=linux
252 [github-actions-ci-url]: https://github.com/expressjs/express/actions/workflows/ci.yml
253 [npm-downloads-image]: https://badgen.net/npm/dm/express
254 [npm-downloads-url]: https://npmcharts.com/compare/express?minimal=true
255 [npm-install-size-image]: https://badgen.net/packagephobia/install/express
256 [npm-install-size-url]: https://packagephobia.com/result?p=express
257 [npm-url]: https://npmjs.org/package/express
258 [npm-version-image]: https://badgen.net/npm/v/express
259 [ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/express/badge
260 [ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/express
261 [Code of Conduct]: https://github.com/expressjs/express/blob/master/Code-Of-Conduct.md