-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
34 lines (24 loc) · 817 Bytes
/
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
const app = require("./app");
const dotenv = require("dotenv");
const connectDatabase=require('./database/connection')
dotenv.config({ path: "configuration/config.env" });
const PORT = process.env.PORT;
// Connecting to database
connectDatabase()
// Handling Uncaught Exception
process.on("uncaughtException", (err) => {
console.log(`Error: ${err.message}`);
console.log(`Shutting down the server due to Uncaught Exception`);
process.exit(1);
});
const server = app.listen(PORT, () => {
console.log(`Server is working on http://localhost:${PORT}`);
});
// Unhandled Promise Rejection
process.on("unhandledRejection", (err) => {
console.log(`Error: ${err.message}`);
console.log(`Shutting down the server due to Unhandled Promise Rejection`);
server.close(() => {
process.exit(1);
});
});