-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (31 loc) · 1.13 KB
/
index.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
const express = require('express');
const path = require('path');
const bodyParser = require('body-parser');
const favicon = require('serve-favicon');
const DataMonitor = require("./DataMonitor");
const debug = require("debug")("app");
const PORT = 3000;
const dataMonitor = new DataMonitor();
dataMonitor.on('dataAded', (item) => {
//setImmediate makes the event emitter async
// setImmediate(() => {
// console.log('Data added: ' + item);
// })
console.log('Data added: ' + item);
});
const clothing = require('./server/routes/clothing')(dataMonitor);
const errors = require('./server/routes/errors');
const app = express();
app.use(favicon(path.join(__dirname, 'dist/favicon.ico')));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'dist')));
app.use('/api/clothing', clothing);
app.use('/api/errors', errors);
app.get('*', function(req, res) {
res.sendFile(path.join(__dirname, 'dist/index.html'));
});
app.set('port', process.env.PORT || 3000);
app.listen(app.get('port'));
console.log('Listening on port: ' + app.get('port'));
module.exports = app;