-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
35 lines (28 loc) · 1.15 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
const dotenv = require('dotenv');
dotenv.config({ path: './config.env' });
// This is included here , as to start listening for events before excuting any code.
process.on('uncaughtException', (err) => {
console.log(err.name, err.message);
console.log('Uncaught Exception, Shutting down...');
// Here we quit as this lands node process into critical state, which can be recovered after restarting.
process.exit(1); // 0 -> no errors , 1 -> Unhandled Rejections.
});
const mongoose = require('mongoose');
const app = require('./app');
const DB = process.env.DATABASE.replace(
'<PASSWORD>',
process.env.DATABASE_PASSWORD
);
mongoose.connect(DB).then(() => console.log('DB connection successful!'));
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log(`App is running on port ${port}...`);
});
process.on('unhandledRejection', (err) => {
console.log(err.name, err.message);
console.log('Unhandled Rejection, Shutting down...');
// server.close() quits gracefully rather than hard quitting like process.exit();
server.close(() => {
process.exit(1); // 0 -> no errors , 1 -> Unhandled Rejections.
});
});