-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
41 lines (31 loc) · 920 Bytes
/
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
const cool = require('cool-ascii-faces');
const throng = require('throng');
const cluster = require('cluster');
const WORKERS = process.env.WEB_CONCURRENCY || 1;
// if(cluster.isMaster) {
// for (let i = 0; i < WORKERS; i++) {
// cluster.fork();
// }
// }
throng({
workers: WORKERS,
lifetime: Infinity
}, start);
function start() {
const express = require('express');
const app = express();
app.set('port', (process.env.PORT || 5000));
app.use(express.static(__dirname + '/public'));
// views is directory for all template files
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
app.get('/', function(request, response) {
response.render('pages/index')
});
app.get('/cool', function(request, response) {
response.send(cool());
});
app.listen(app.get('port'), function() {
console.log('Node app is running on port', app.get('port'));
});
}