Hello folks!
I was wondering whether it is a good idea to introduce a --verbose
command line argument that dumps stdout
and stderr
along.
I have naively did:
streamToObservable(cp.stdout.pipe(split()))
.forEach(chunk => {
console.log(chunk); // only the lines containing "hello" - and they will be capitalized
});
streamToObservable(cp.stderr.pipe(split()))
.forEach(chunk => {
console.log(chunk); // only the lines containing "hello" - and they will be capitalized
});
while debugging but I haven't put too much time (just wanted to see what was happening).
What do you think?
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too