-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
58 lines (50 loc) · 1.46 KB
/
app.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
const express = require('express');
const app = express();
const logger = require("morgan");
const bodyParser = require("body-parser");
const mongoose = require("mongoose");
const messagesRoutes = require("./api/routes/messages");
//set up db connection to MongoDB Atlas
//hard coded db credentials, having problem with nodemon.js environment variables
mongoose.connect(
"mongodb+srv://hluhano:" + "hluhano55" + "@rajluhmongoatlas.9uqz3.mongodb.net/" + "dev_db" + "?retryWrites=true&w=majority", {
useNewUrlParser: true,
useUnifiedTopology: true
}
);
//configuring logger and bodyparser
app.use(logger("dev"));
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(bodyParser.json());
//Allow access via browsers (fix for CORS error)
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
res.header(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept, Authorization"
);
if (req.method === "OPTIONS") {
res.header("Access-Control-Allow-Methods", "GET, POST, PATCH, DELETE");
return res.status(200).json({});
}
next();
});
//api route
app.use("/messages", messagesRoutes);
//invalid route and error handling
app.use((req, res, next) => {
const error = new Error("Invalid route");
error.status = 404;
next(error);
});
app.use((error, req, res, next) => {
res.status(error.status || 500);
res.json({
error: {
message: error.message
}
});
});
module.exports = app;