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
If you've never worked with a MongoDB read in your documentation before you install it, official documentation access, <ahref="https://docs.mongodb.org/manual/">https://docs.mongodb.org/manual/</a>
44
42
45
-
###Installation
43
+
## Installation
46
44
47
-
#### Before installing
48
45
Before you begin installing MEANStack we will update the NPM and soon after installing Gulp, Bower and nodemon in the global scope.
49
46
50
-
#####Updating NPM
47
+
### Updating NPM
51
48
```bash
52
49
$ npm update -g npm
53
50
```
54
51
55
-
#####Install Gulp
52
+
### Install Gulp
56
53
```bash
57
54
$ npm install -g gulp
58
55
```
59
56
60
-
#####Install Bower
57
+
### Install Bower
61
58
```bash
62
59
$ npm install -g bower
63
60
```
64
61
65
-
#####Install Nodemon
62
+
### Install Nodemon
66
63
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Perfect for development. Install it using npm.
67
64
```bash
68
65
$ npm install -g nodemon
69
66
```
70
67
71
-
#####Note
68
+
#### Note
72
69
If you already have the Gulp and Bower recommend updates them.
73
70
```bash
74
71
$ npm update -g gulp bower
75
72
```
76
73
77
-
#### Install
78
-
**The first step** is to clone the repository GitHub.
**The second step** is to install the back-end dependencies.
80
+
### The second step
81
+
Install the back-end dependencies.
84
82
```bash
85
83
$ npm install
86
84
```
87
85
88
-
**The third step** is to install the front-end dependencies.
86
+
### The third step
87
+
Install the front-end dependencies.
89
88
```bash
90
89
$ bower install
91
90
```
92
91
93
-
**The fourth step** is to configure the application. For this we have a sample file "config/config.example.js" copy and rename it to "config/config-development.js".
92
+
### The fourth step
93
+
Configure the application. For this we have a sample file "config/config.example.js" copy and rename it to "config/config-development.js".
0 commit comments