mirror of
https://git.sleeping.town/mirrors/foxy-moxy
synced 2024-11-21 19:47:43 +00:00
13 lines
375 B
JavaScript
13 lines
375 B
JavaScript
const cluster = require('express-cluster')
|
|
const app = require('./server.js')
|
|
|
|
const 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
|
|
})
|