-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
53 lines (40 loc) · 1.15 KB
/
app.js
File metadata and controls
53 lines (40 loc) · 1.15 KB
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
43
44
45
46
47
48
49
50
51
52
53
// importing modules
var express = require('express');
var mongoose = require('mongoose');
var bodyparser = require('body-parser');
var cors = require('cors');
var path = require('path');
var app = express();
const route = require('./routes/route');
// connect to mongoDB
mongoose.connect('mongodb://localhost:27017/contactlist', {
useNewUrlParser: true,
useUnifiedTopology: true
});
// on connection
mongoose.connection.on('connected', function() {
console.log('Connected to database mongodb @ 27017');
});
// if error in connection
mongoose.connection.on('error', function(err) {
if(err) {
console.log('Error in database connection: ' + err);
}
});
// port number
const port = 3000;
// adding middleware - cors
app.use(cors());
// body-parser
app.use(bodyparser.json());
// static files
app.use(express.static(path.join(__dirname, 'public')));
// routes
app.use('/api', route); // If we would have any request like /api/anything.. it'll get transfered to route.js
// testing server
app.get('/', function(req, res) {
res.send('Working!');
});
app.listen(port, function() {
console.log('Server started at port: ' + port);
});