node/test/fixtures/cluster-preload-test.js

8 lines
210 B
JavaScript
Raw Permalink Normal View History

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}`);
});
}