-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
63 lines (50 loc) · 1.88 KB
/
app.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const bodyParser = require('body-parser');
const cluster = require('cluster');
const dotenv = require('dotenv');
const express = require('express');
const favicon = require('serve-favicon');
const http = require('http');
const path = require('path');
dotenv.config({ path: path.join(__dirname, '.env') });
const numCPUs = process.env.WEB_CONCURRENCY || require('os').cpus().length;
if (cluster.isMaster) {
console.log(`Master ${process.pid} is running`);
for (let i = 0; i < numCPUs; i++)
cluster.fork();
cluster.on('exit', (worker, code, signal) => {
console.log(`worker ${worker.process.pid} died`);
cluster.fork();
});
} else {
const app = express();
const server = http.createServer(app);
const URL = process.env.URL || 'http://localhost:3000';
const PORT = process.env.PORT || 3000;
const apiRouteController = require('./routes/apiRoute');
const dataRouteController = require('./routes/dataRoute');
const indexRouteController = require('./routes/indexRoute');
const notaryRouteController = require('./routes/notaryRoute');
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
app.use(express.static(path.join(__dirname, 'public')));
app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(bodyParser.json({}));
app.use(bodyParser.urlencoded({
extended: true
}));
app.use((req, res, next) => {
if (!req.query || typeof req.query != 'object')
req.query = {};
if (!req.body || typeof req.body != 'object')
req.body = {};
res.locals.URL = URL;
next();
});
app.use('/', indexRouteController);
app.use('/api', apiRouteController);
app.use('/data', dataRouteController);
app.use('/notary', notaryRouteController);
server.listen(PORT, () => {
console.log(`Server is on port ${PORT} as Worker ${cluster.worker.id} running @ process ${cluster.worker.process.pid}`);
});
}