mirror of
https://git.sleeping.town/mirrors/foxy-moxy
synced 2024-11-21 11:37:43 +00:00
13 lines
388 B
JavaScript
13 lines
388 B
JavaScript
const cluster = require('express-cluster');
|
|
const app = require('./server.js');
|
|
|
|
activePort = process.env.PORT || 3000;
|
|
|
|
cluster((worker) => {
|
|
app.listen(activePort, () => {
|
|
console.log('worker ' + worker.id + ' is listening on port ' + activePort);
|
|
});
|
|
}, {
|
|
'respawn': true, // workers will restart on failure
|
|
'verbose': true, // logs what happens to console
|
|
});
|