diff --git a/Readme.md b/Readme.md index 57dbc367aee..244f2004bbf 100644 --- a/Readme.md +++ b/Readme.md @@ -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