-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
49 lines (43 loc) · 1.29 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
43
44
45
46
47
48
49
//order is impoportant
const mongoose = require('mongoose');
const dotenv = require('dotenv');
// Should be the first thing in our application
////Handle uncaught exception Promises in the whole application ex:variables not defined
process.on('uncaughtException', (err) => {
console.log('uncaughtException : Shuting down...');
console.log(err.name, err.message);
server.close(() => {
process.exit(1); //shut down application
});
});
const app = require('./app');
dotenv.config({ path: './config.env' });
//1)DataBase
const DB = process.env.DATABASE.replace(
'<PASSWORD>',
process.env.DATABASE_PASSWORD
);
mongoose
.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true,
})
.then((conn) => {
//console.log(conn.connections);
console.log('Connected to database');
});
//2)Server
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log(`App listening on port ${port}...`);
});
//Handle unhandled Rejection Promises in the whole application Ex:DB connection errors
process.on('unhandledRejection', (err) => {
console.log('UhandledRejection : Shuting down...');
console.log(err.name, err.message);
server.close(() => {
process.exit(1); //shut down application
});
});