-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
51 lines (42 loc) · 1.8 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
const express = require('express');
const app = express();
const morgan = require('morgan'); // allows us to see in the console the results of our cruds operations on the API
const mongoose = require('mongoose'); // library to connect to MongoDb
//importing the routes
const opusRouter = require('./api/routes/opus');
const charactersRouter = require('./api/routes/characters');
const userRouter = require('./api/routes/user');
// connecting to the mongodb
mongoose.connect('mongodb+srv://RBPerso:'+ process.env.MONGO_ATLAS_PW + '@dangan-api-cluster-jxfb0.mongodb.net/test?retryWrites=true&w=majority',
{useNewUrlParser: true})
app.use(morgan('dev')); //setting up dev mode
app.use(express.urlencoded({extended: false})); // body-parser, set to false because we don't need extra information
app.use(express.json()); // extract json data and makes it readable
// middleware that ensures that cors errors are prevented
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*'); // allow the access of the api, to all clients/websites asking
res.header('Access-Control-Allow-Headers', '*'); // which kind of header we want to accept
if(req.method === 'OPTIONS') {
res.header('Access-Control-Allow-Methods', 'PUT, POST, PATCH, DELETE');
return res.status(200).json({});
}
next();
})
// importing routes
app.use('/characters', charactersRouter);
app.use('/opus', opusRouter);
app.use('/user', userRouter);
// //middleware to handle errors
// app.use((req, res, next) => {
// const error = new Error('Not found');
// error.status = 404;
// next(error);
// })
// app.use((error, req, res, next) => {
// res.status(err.status || 500).json({
// error: {
// message: error.message
// }
// })
// })
module.exports = app;