Node.js - Cluster Module
Given the following code snippet, what will be logged when a worker process receives a request?
const cluster = require('cluster');
const http = require('http');
if (cluster.isPrimary) {
cluster.fork();
} else {
http.createServer((req, res) => {
console.log('Worker handling request');
res.end('Hello');
}).listen(8000);
}