-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
64 lines (54 loc) · 1.59 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Importing dotenv
import './dotenv.js'
// Imports
import express from 'express';
import connectUsingMongoose from './config/mongooseConfig.js';
// Routers imported
import questionRouter from './src/features/question/routes/question.routes.js';
import optionRouter from './src/features/option/routes/option.routes.js';
import ApplicationError from './src/Middlewares/ApplicationError.js';
import mongoose from 'mongoose';
// Creating server
const app = express();
// Parsing data middleware
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Default route
app.get('/', (req,res,next)=>{
res.send("Welcome to Polling System API! Go to Postman to test the API.");
});
// Routes
app.use('/api/questions', questionRouter);
app.use('/api/options', optionRouter);
// Wrong routes
app.use((req,res,next)=>{
res.status(404).send("This route does not exist please enter correct route.");
});
// Error handler
app.use((err, req, res, next)=>{
console.log(err);
if(err instanceof mongoose.Error.ValidationError)
{
return res.status(400).json({
success: "false",
error: err.message
});
}
if(err instanceof ApplicationError)
{
return res.status(err.statusCode || 500).json({
success: "false",
error: err.message
});
}
res.status(500).json({
success: "false",
error: "Something went wrong."
});
});
// Server listening.
const PORT = process.env.PORT;
app.listen(PORT, ()=>{
console.log(`Server is listening on localhost: ${PORT}`);
connectUsingMongoose();
})