Skip to content

Commit c3fbd3f

Browse files
committed
express(1) usage docs
1 parent d1d3871 commit c3fbd3f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Readme.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,23 @@ or to access the `express(1)` executable install globally:
2020

2121
$ npm install -g express
2222

23+
## Getting Started
24+
25+
The quickest way to get started with express is to utilize the executable `express(1)` to generate an application as shown below:
26+
27+
Create the app:
28+
29+
$ npm install -g express
30+
$ express /tmp/foo && cd /tmp/foo
31+
32+
Install dependencies:
33+
34+
$ npm install -d
35+
36+
Start the server:
37+
38+
$ node app.js
39+
2340
## Features
2441

2542
* Robust routing

0 commit comments

Comments
 (0)