Files
Kmake/test/fixtures/cluster-preload-test.js
2026-05-26 23:36:42 -07:00

8 lines
210 B
JavaScript

const cluster = require('cluster');
if (cluster.isPrimary) {
cluster.fork(); // one child
cluster.on('exit', function(worker, code, signal) {
console.log(`worker terminated with code ${code}`);
});
}