You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// this code is run twice// see implementation notes belowconsole.log(process.pid);// after this point, we are a daemonrequire('daemon')();//As stdout is closed here. process.pid will not get printed anywhere. console.log(process.pid);