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
Copy file name to clipboardExpand all lines: License
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
MEANStack bringing together the best of MEAN MongoDB, Express, AngularJS and Node.js
1
+
MEANStack.io bringing together the best of MEAN MongoDB, Express, AngularJS and Node.js
2
2
The purpose of the application is to facilitate the development offering the best of MEAN with a stack of packages, frameworks, libraries and strategies.
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>
42
+
43
+
## Installation
44
+
45
+
Before you begin installing MEANStack we will update the NPM and soon after installing Gulp, Bower and nodemon in the global scope.
46
+
47
+
### Updating NPM
48
+
```bash
49
+
$ npm update -g npm
50
+
```
51
+
52
+
### Install Gulp
53
+
```bash
54
+
$ npm install -g gulp
55
+
```
56
+
57
+
### Install Bower
58
+
```bash
59
+
$ npm install -g bower
60
+
```
61
+
62
+
### Install Nodemon
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.
64
+
```bash
65
+
$ npm install -g nodemon
66
+
```
67
+
68
+
#### Note
69
+
If you already have the Gulp and Bower recommend updates them.
0 commit comments