forked from RealDevSquad/website-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
29 lines (21 loc) · 647 Bytes
/
app.js
File metadata and controls
29 lines (21 loc) · 647 Bytes
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
const createError = require('http-errors')
const express = require('express')
// Attach response headers
const responseHeaders = require('./middlewares/responseHeaders')
// import app middlewares
const AppMiddlewares = require('./middlewares')
// import routes
const indexRouter = require('./routes/index')
const app = express()
// Add Middlewares, routes
AppMiddlewares(app)
app.use('/', responseHeaders, indexRouter)
// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404))
})
// error handler
app.use(function (err, req, res, next) {
return res.boom.notFound(err)
})
module.exports = app