Node.js - Cluster Module
You wrote this code snippet to create a cluster but it crashes immediately:
const cluster = require('cluster');
cluster.fork();
require('http').createServer((req, res) => res.end('Hello')).listen(3000);
What is the likely cause?