-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
45 lines (34 loc) · 849 Bytes
/
server.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
import express from 'express';
import bodyParser from 'body-parser';
import logger from 'morgan';
import createTables from './seeds/index';
import api from './api';
// Database Tables Creation
(async () => {
try {
await createTables();
} catch (e) {
throw e;
}
})()
.catch((err) => { console.log(err.stack); });
const app = express();
// use body parser so we can get info from POST and/or URL parameters
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
// Using logger to log requests to the console
app.use(logger('dev'));
app.get('/', (req, res) => {
res.send('Page working yes');
});
/**
* Api Routers
*/
app.use('/api', api);
/**
* 404 page
*/
app.use((req, res) => {
res.status(404).send('Page not found');
});
export default app;