I have a simple node.js app to echo stdin. When I run it interactively on the Windows console, I expected control-Z to be recognised as an EOF signal. But it isn't. So how do I get a node app to treat control-Z as EOF?
// testEcho.js
process.stdin.setEncoding('utf-8');
console.log("input is a TTY?:",process.stdin.isTTY);
process.stdin.on('readable',function() {
var vText = process.stdin.read();
if (vText != null)
console.log('echo: "%s"',vText);
process.stdout.write('> '); // prompt for next
});
process.stdin.on('end',function() { // Works for redirected input but not triggered by ^Z on TTY
console.log('end of input reached');
});
```
I have a simple node.js app to echo stdin. When I run it interactively on the Windows console, I expected control-Z to be recognised as an EOF signal. But it isn't. So how do I get a node app to treat control-Z as EOF?
// testEcho.js
process.stdin.setEncoding('utf-8');
console.log("input is a TTY?:",process.stdin.isTTY);
process.stdin.on('readable',function() {
var vText = process.stdin.read();
if (vText != null)
console.log('echo: "%s"',vText);
process.stdout.write('> '); // prompt for next
});
process.stdin.on('end',function() { // Works for redirected input but not triggered by ^Z on TTY
console.log('end of input reached');
});
```
Share Improve this question edited Jun 3, 2015 at 23:03 Michael Lemaire asked Jun 3, 2015 at 5:59 Michael LemaireMichael Lemaire 8061 gold badge7 silver badges19 bronze badges 2-
process.on("SIGINT", fn);
– Mulan Commented Jun 3, 2015 at 6:23 - My experience with node 4.8.2 on debian is that process.stdin emits both 'end' and 'close' when ctrl-D is pressed. – fuzzyTew Commented May 5, 2018 at 21:30
2 Answers
Reset to default 7the problem is you're using process.stdin.on
instead of process.on()
See the fix I made here and everything should be fine and dandy :) Enjoy!
process.stdin.setEncoding('utf-8');
console.log("input is a TTY?:", process.stdin.isTTY);
process.stdin.on('readable',function() {
var vText = process.stdin.read();
if (vText != null)
console.log('echo: "%s"',vText);
process.stdout.write('> '); // prompt for next
});
process.on('SIGINT', function () {
console.log('Over and Out!');
process.exit(0);
});
Also I replaced 'end'
with 'SIGINT'
as that's the signal that is caught by CTRL+C
You can read about the signal events here: https://nodejs/api/process.html#process_signal_events
It would appear the solution is to use readline
. This is more terminal-aware, and treats an interactive TTY ctrl-D as EOF, while also handling redirected input streams correctly. Also, being line oriented/aware, it conveniently strips newlines from the input strings.
var readline = require('readline');
process.stdin.setEncoding('utf-8');
console.log("input is a TTY?",process.stdin.isTTY);
var rl = readline.createInterface({input: process.stdin, output: process.stdout});
rl.setPrompt('> ');
rl.prompt();
rl.on('line' ,function(aText) { console.log('echo: "%s"',aText); rl.prompt(); });
rl.on('close',function() { console.log('input has closed'); /* ... */ });
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633684a4481790.html
评论列表(0条)