Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,17 @@ for more information.

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:

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

```bash
npm install -g express-generator@4
```

> Note: the generator is currently 4.x and scaffolds an Express 4-style
> application. If you want a starter that follows the Express 5 APIs, create
> a new project manually (for example `npm init -y && npm install express`) or
> update the generated app to Express 5 after scaffolding.

Create the app:

```bash
Expand Down