tableflip / guvnor

A node process manager that isn't spanners all the way down
MIT License
430 stars 37 forks source link

why common process doesn't exit ? #92

Open mike442144 opened 8 years ago

mike442144 commented 8 years ago

Hi, I have a simple script name test.js that content is:

process.argv.forEach((val, index, array) => {
  console.log(`${index}: ${val}`);
});

and I start using guv start test.js, but it's strange why the process kept running and never exit ?

Thanks for your help.