There was an error while loading. Please reload this page.
1 parent ffa68e2 commit e04b9d3Copy full SHA for e04b9d3
README.md
@@ -1,6 +1,26 @@
1
# express-mvc
2
A light-weight full-featured mvc pattern for express framework with minimum dependencies
3
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
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
24
## The config directory
25
26
All application configuration files are stored here grouped by its functionalites:
0 commit comments