-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
34 lines (26 loc) · 863 Bytes
/
server.js
File metadata and controls
34 lines (26 loc) · 863 Bytes
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
//Bring in all dependencies
require('dotenv').config();
const express = require('express');
const mongoose = require('mongoose');
const bodyParser=require('body-parser');
//Initialize app with express
const app = express();
//Database Connection
mongoose.connect(process.env.DATABASE);
mongoose.connection.on('connected',()=>{
console.log('connected to the database');
});
mongoose.connection.on('error',(err)=>{
console.log('Unable to connect to the database'+err );
});
//Port to be used by the server
const _PORT = process.env.PORT;
//---------------Middlewares------------------------
app.use(bodyParser.json());
//------------Middlewares----------------------------
app.get('/', (req, res, next)=>
{res.send('i am alive')});
//Start the server
app.listen(_PORT, () => {
console.log('Server Started') ;
});