You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for this very useful package. I have been using it for some tests and I would like to now if it is possible to expand it to support reading input from stdin instead of a file. This would allow to instead of doing:
./program > log.txt
node tail.js log.txt
To simply do:
./program | node tail.js
This would avoid disk writing.
I'm not a Node programmer so I don't know how to change the code to add such support, and I tried looking for solutions to this but could not find anything as nice as node-tail.
The text was updated successfully, but these errors were encountered:
Hi, thanks for this very useful package. I have been using it for some tests and I would like to now if it is possible to expand it to support reading input from stdin instead of a file. This would allow to instead of doing:
./program > log.txt
node tail.js log.txt
To simply do:
./program | node tail.js
This would avoid disk writing.
I'm not a Node programmer so I don't know how to change the code to add such support, and I tried looking for solutions to this but could not find anything as nice as node-tail.
The text was updated successfully, but these errors were encountered: