-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
42 lines (35 loc) · 1.19 KB
/
server.js
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
37
38
39
40
41
42
var express=require('express');
var app=express();
var port=process.env.PORT || 8080;
var morgan=require('morgan');
var mongoose =require('mongoose');
var bodyParser=require('body-parser');
var router =express.Router();
var appRoutes = require('./app/routes/api')(router);
var path =require('path');
app.use(morgan('dev'));
app.use(bodyParser.json());//for parsing application /json
app.use(bodyParser.urlencoded({extended:true}));//for parsing application /x-www-form-urlencoded
app.use(express.static(__dirname + '/public'));
app.use('/api',appRoutes);
mongoose.connect('mongodb://localhost:27017/newdb',function(err){
//mongodb://localhost:27017/newdb
//mongodb://kottackal:kottackal123@ds111562.mlab.com:11562/newdb
if(err){
console.log('Not connected to the database:' +err);
}else{
console.log('Successfully connected to MongoDB');
}
});
/*app.get('/home',function(req,res){
res.send('Hello from home');
});
app.get('/',function(req,res){
res.send('Hello World');
});*/
app.get('*', function(req,res){
res.sendFile(path.join(__dirname + '/public/app/views/index.html'));
});
app.listen(port,function(){
console.log('Running the server on port' + port);
});