-
Notifications
You must be signed in to change notification settings - Fork 15
/
Prerequisites.txt
36 lines (23 loc) · 1.24 KB
/
Prerequisites.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Prerequisites for the NodeJs Workshop ::
- Beginner Session
1. Nodejs
Windows : Go to node.js official site (http://nodejs.org/download/) and download Windows installer(.msi installer), then execute the installer.
Macintosh : Go to node.js official site (http://nodejs.org/download/) and download Mac installer(.pkg installer), then execute the installer.
2. Express : npm gets installed with node.So, we are going to install express through npm.
Just run the following command :
Windows : npm install -g express-generator
Mac : sudo npm install -g express-generator
- Expert Session
1. Mongo DB
Download the respective OS installer from the below link :
http://www.mongodb.org/downloads?_ga=1.170962976.125353923.1415088247
Steps to Install Mongo DB :
Lets sudo first so that we are the admin
cd to the mongodb folder - make sure we are in harddisk
create a folder data and then a folder db inside it
cd to the bin folder inside the mongodb
Then run ./mongod for mac or mongod for windows
Keep this tab running and open a new tab -
In the new tab : run ./mongo for mac and mongo for windows
In the mongo prompt, run show dbs and it will list the default dbs!!
We will install the softwares on the day of the workshop as well if you guys face any issues.