-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
38 lines (27 loc) · 1.01 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
// server.js
'use strict';
// BASE SETUP
// =============================================================================
// call the packages we need
var express = require('express'); // call express
var app = express();
var trelloRouter = require('./src/trelloRouter.js');// define our app using express
//var bodyParser = require('body-parser');
// configure app to use bodyParser()
// this will let us get the data from a POST
//app.use(bodyParser.urlencoded({ extended: true }));
//app.use(bodyParser.json());
var port = process.env.PORT || 8080; // set our port
// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api
app.use('/api', trelloRouter);
//Middleware error handler !
app.use(function(error, req, res , next){
console.error(error);
//Send the JSON error
res.json(error);
});
// START THE SERVER
// =============================================================================
app.listen(port);
console.log('Magic happens on port ' + port);