-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
32 lines (23 loc) · 635 Bytes
/
Copy pathmain.js
File metadata and controls
32 lines (23 loc) · 635 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
32
const express = require('express');
const main = express();
const tasks = require('./routes/tasks');
const myConnect = require('./db/connect');
const errorHandler = require('./middleware/error');
// midllewares
main.use(express.json()); // does not work well with cURL
main.use(express.urlencoded({extended: true}));
// api
main.use('/api/v1/tasks', tasks);
main.use(errorHandler);
const port = process.env.PORT || 5000;
async function startServer(){
try{
await myConnect(); //returns promise
main.listen(port, _=>{
console.log(`listening on ${port}`);
});
} catch(error){
console.log(error);
}
}
startServer();