Skip to content

Commit e04b9d3

Browse files
committed
add the installation command
1 parent ffa68e2 commit e04b9d3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# express-mvc
22
A light-weight full-featured mvc pattern for express framework with minimum dependencies
33

4+
5+
## Installation
6+
7+
```bash
8+
npm install express-mvc-generate -g
9+
```
10+
11+
Express MVC generator command will be installed globally so from anywhere you can call it to generate the project skeleton.
12+
13+
```bash
14+
express-mvc-generate my-project
15+
cd my-project
16+
npm install
17+
npm start
18+
```
19+
Server will be created at port 3000 by default. you can change the port later from app configurations.
20+
21+
Browse `http://localhost:3000` and have fun.
22+
23+
424
## The config directory
525

626
All application configuration files are stored here grouped by its functionalites:

0 commit comments

Comments
 (0)