I'm building a command-line app in Node which is basically a setup wizard. At some point in the script, I'd like to start an openssl script which has its own stdout and prompts, and then ideally return to my Node app when it's done.
I've tried using spawn but am having trouble showing the stdout. Is this practically possible?