Example: type this in the shell and in web-terminal ``` echo 1; echo 2 >&2; echo 3 ``` Output should be 1 2 3 but on web-terminal it's 1 3 2. I suspect this is due to buffering and I wonder if this is even fixable on NodeJS.
Example: type this in the shell and in web-terminal
Output should be 1 2 3 but on web-terminal it's 1 3 2. I suspect this is due to buffering and I wonder if this is even fixable on NodeJS.