I basically want to do something like this:
$ my-node-cli <some-param> | less
Note that less
is just an example. I need it to work with any other *nix command.
More about the use case:
I wrote a node CLI package that searches some online resource and outputs results to the shell. Since the result set can be huge, client wants to do additional operations on it, e.g grep
, head
, tail
, tee
, ... anything really.
I searched far and wide and I only managed to find the way to pipe into node program, not out of. My current idea is to capture the right side of pipe when my program is called, then, after I obtain results, execute my results concatenated with pipe (and that part I remembered when I was called) using child_process.exec
. Not sure whether that could work though?
Note that each time my program is called it's a new process, i.e. the program doesn't have it's own prompt.
Thanks