-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathserver.js
41 lines (32 loc) · 1.1 KB
/
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
//Dependencies
const express = require('express');
const cors = require('cors');
const bodyParser = require('body-parser');
//ROUTERS
const UserRoute = require('./routes/UserRoutes');
//TODO: import another router
const app = express();
const PORT = process.env.PORT || 5000; //1. TODO: replace '5000' with your port number.
app.listen(PORT, () => {
console.log(`Server started on port: ${PORT}, navigate to http://localhost:${PORT}/`);
});
//parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));
//parse application/json
app.use(bodyParser.json());
/*enable cross origin resource sharing to allow
restricted resources to be accessed from another domain */
app.use(cors());
//ROUTE INITIALIZER
app.use('/users', UserRoute);
//TODO: Add another route initializer
//Handle GET to root route
app.get('/', (req, res) => {
//2. TODO: add key value pair to display a message in the response
res.send({ 'Route': 'Root', 'HTTP': 'GET' });
})
//Error handler
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).send('Something broke!');
});