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
*[Website and Documentation](https://expressjs.com/) - [[website repo](https://github.com/expressjs/expressjs.com)]
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
74
*[GitHub Organization](https://github.com/expressjs) for Official Middleware & Modules
75
-
*[Github Discussions](https://github.com/expressjs/discussions) for discussion on the development and usage of Express
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
76
78
77
-
**PROTIP** Be sure to read the [migration guide to v5](https://expressjs.com/en/guide/migrating-5)
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).
78
80
79
81
## Quick Start
80
82
81
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:
82
84
83
85
Install the executable. The executable's major version will match Express's:
84
86
85
-
```bash
86
-
npm install -g express-generator@4
87
+
```console
88
+
$ npm install -g express-generator@4
87
89
```
88
90
89
91
Create the app:
90
92
91
-
```bash
92
-
express /tmp/foo &&cd /tmp/foo
93
+
```console
94
+
$ express /tmp/foo &&cd /tmp/foo
93
95
```
94
96
95
97
Install dependencies:
96
98
97
-
```bash
98
-
npm install
99
+
```console
100
+
$ npm install
99
101
```
100
102
101
103
Start the server:
102
104
103
-
```bash
104
-
npm start
105
+
```console
106
+
$ npm start
105
107
```
106
108
107
109
View the website at: http://localhost:3000
@@ -113,32 +115,29 @@ npm start
113
115
HTTP APIs.
114
116
115
117
Express does not force you to use any specific ORM or template engine. With support for over
116
-
14 template engines via [@ladjs/consolidate](https://github.com/ladjs/consolidate),
118
+
14 template engines via [Consolidate.js](https://github.com/tj/consolidate.js),
117
119
you can quickly craft your perfect framework.
118
120
119
121
## Examples
120
122
121
-
To view the examples, clone the Express repository:
0 commit comments