Is there a way to get ‘live’ output lines from a python script spawned by child_process.execFile without flushing stdout every time?
I am trying to get the lines a (‘never ending’) python script puts into stdout. But currently my code would only log something to the console when the python process exits. Is there a way I can get …