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
+
45
+
### Installation
46
+
47
+
#### Before installing
48
+
Before you begin installing MEANStack we will update the NPM and soon after installing Gulp, Bower and nodemon in the global scope.
49
+
50
+
##### Updating NPM
51
+
```bash
52
+
$ npm update -g npm
53
+
```
54
+
55
+
##### Install Gulp
56
+
```bash
57
+
$ npm install -g gulp
58
+
```
59
+
60
+
##### Install Bower
61
+
```bash
62
+
$ npm install -g bower
63
+
```
64
+
65
+
##### Install Nodemon
66
+
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
+
```bash
68
+
$ npm install -g nodemon
69
+
```
70
+
71
+
##### Note
72
+
If you already have the Gulp and Bower recommend updates them.
73
+
```bash
74
+
$ npm update -g gulp bower
75
+
```
76
+
77
+
#### Install
78
+
**The first step** is to clone the repository GitHub.
**The second step** is to install the back-end dependencies.
84
+
```bash
85
+
$ npm install
86
+
```
87
+
88
+
**The third step** is to install the front-end dependencies.
89
+
```bash
90
+
$ bower install
91
+
```
92
+
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".
0 commit comments