I am writing an application in node that does some verification and configuration and should then launch another process and exit.
I want this new process to run in the same console window and to use the same output and accept keyboard input from the console.
Is this possible with node? I know that I can create child processes but as far as I am aware they will die when node exits.
Thanks