You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**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).
63
60
64
-
### Security Issues
65
-
66
-
If you discover a security vulnerability in Express, please see [Security Policies and Procedures](Security.md).
67
-
68
61
## Quick Start
69
62
70
63
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:
71
64
72
65
Install the executable. The executable's major version will match Express's:
73
66
74
-
```bash
67
+
```console
75
68
$ npm install -g express-generator@4
76
69
```
77
70
78
71
Create the app:
79
72
80
-
```bash
73
+
```console
81
74
$ express /tmp/foo &&cd /tmp/foo
82
75
```
83
76
84
77
Install dependencies:
85
78
86
-
```bash
79
+
```console
87
80
$ npm install
88
81
```
89
82
90
83
Start the server:
91
84
92
-
```bash
85
+
```console
93
86
$ npm start
94
87
```
95
88
@@ -109,31 +102,43 @@ $ npm start
109
102
110
103
To view the examples, clone the Express repo and install the dependencies:
0 commit comments