Node.js - Cluster Module
Given this code snippet:
Why might the workers never start properly?
const cluster = require('cluster');
if (cluster.isMaster) {
cluster.fork();
cluster.fork();
} else {
console.log('Worker started');
}Why might the workers never start properly?
