-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.js
More file actions
31 lines (23 loc) · 744 Bytes
/
app.js
File metadata and controls
31 lines (23 loc) · 744 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
30
31
import express from 'express';
import path from 'path';
import __dirname from './dirname.js';
import cookieParser from 'cookie-parser';
import cors from 'cors';
import logger from 'morgan';
import usersRouter from './routes/users.js';
const app = express();
app.use(logger('dev'));
app.use(cors());
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")));
app.use('/users', usersRouter);
app.use(function (req, res, next) {
res.status(404).json({message: "We couldn't find what you were looking for 😞"})
})
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(500).json(err)
})
export default app;