I've been doing this to synchronously read the whole stdin data under Linux:
var buffer = fs.readFileSync('/dev/stdin');
This obviously won't work on Windows since there is no /dev/stdin file. What could I do to achieve the same?
var size = fs.fstatSync(process.stdin.fd).size;
var buffer = size > 0 ? fs.readSync(process.stdin.fd, size)[0] : '';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With