Files
Kmake/test/fixtures/parent-process-nonpersistent-fork.js

13 lines
235 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
const fork = require('child_process').fork;
const path = require('path');
const child = fork(
path.join(__dirname, 'child-process-persistent.js'),
[],
{ detached: true, stdio: 'ignore' }
);
console.log(child.pid);
child.unref();