Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to listen for incoming keystrokes in a running nodejs script? If I use process.openStdin() and listen to its 'data' event then the input is buffered until the next newline, like so:

// stdin_test.js
var stdin = process.openStdin();
stdin.on('data', function(chunk) { console.log("Got chunk: " + chunk); });

Running this, I get:

$ node stdin_test.js
                <-- type '1'
                <-- type '2'
                <-- hit enter
Got chunk: 12

What I'd like is to see:

$ node stdin_test.js
                <-- type '1' (without hitting enter yet)
 Got chunk: 1

I'm looking for a nodejs equivalent to, e.g., getc in ruby

Is this possible?

share|improve this question

4 Answers

up vote 26 down vote accepted

You can achieve it this way, if you switch to raw mode:

var stdin = process.openStdin(); 
require('tty').setRawMode(true);    

stdin.on('keypress', function (chunk, key) {
  process.stdout.write('Get Chunk: ' + chunk + '\n');
  if (key && key.ctrl && key.name == 'c') process.exit();
});
share|improve this answer
How would you get a phrase? like This is a test! I have commented out the first line, but that only let me type it all at once, it still got split up. any ideas? I can see that it is onkeypress so how do I detect on[return]press ? Is there a better method than pushing every letter to a string, and then using that string? – JamesM-SiteGen Feb 27 '11 at 0:48
3  
Dont worry, I found out my self, process.stdin.resume(); process.stdin.on('data', function (chunk) { process.stdout.write('data: ' + chunk); }); – JamesM-SiteGen Feb 27 '11 at 0:55
3  
Move the setRawMode to be below the openStdin(), because you can only set the mode if the stdin is initialized. – Tower Dec 5 '11 at 19:22
1  
It appears that stdin no longer emits a keypress event, but instead emits a data event, with difference parameters. – CMC Aug 2 '12 at 2:28
It was available (documented) in the TTY module in versions 0.4.2-0.7.6. As you can see, the functionality was removed from the TTY module in 0.7.7 (github.com/joyent/node/commit/…) – CMC Aug 2 '12 at 2:41

For those finding this answer since this capability was stripped from tty, here's how to get a raw character stream from stdin:

var stdin = process.stdin;

// without this, we would only get streams once enter is pressed
stdin.setRawMode( true );

// resume stdin in the parent process (node app won't quit all by itself
// unless an error or process.exit() happens)
stdin.resume();

// i don't want binary, do you?
stdin.setEncoding( 'utf8' );

// on any data into stdin
stdin.on( 'data', function( key ){
  // ctrl-c ( end of text )
  if ( key === '\u0003' ) {
    process.exit();
  }
  // write the key to stdout all normal like
  process.stdout.write( key );
});

pretty simple - basically just like process.stdin's documentation but using setRawMode( true ) to get a raw stream, which is harder to identify in the documentation.

share|improve this answer
1  
Thanks.. it was simple and easy to implement right away.. :) exactly what i wanted. – Kushal Likhi Feb 21 at 17:06
1  
Doesn't work with Node.js 0.8+. You must import 'keypress'. See Peter Lyons' answer. – gWiz Mar 7 at 22:42
this did work with 0.8, but fun how it's such an ever changing api. – Dan Heberden Mar 19 at 1:15
should use key == '\u0003' (double instead of triply equal sign) to get it work – WHITECOLOR Mar 28 at 12:37
Works for me, thanks. – Dokkat Mar 29 at 13:15

With nodejs 0.6.4 tested (Test failed in version 0.8.14):

rint = require('readline').createInterface( process.stdin, {} ); 
rint.input.on('keypress',function( char, key) {
    //console.log(key);
    if( key == undefined ) {
        process.stdout.write('{'+char+'}')
    } else {
        if( key.name == 'escape' ) {
            process.exit();
        }
        process.stdout.write('['+key.name+']');
    }

}); 
require('tty').setRawMode(true);
setTimeout(process.exit, 10000);

if you run it and:

  <--type '1'
{1}
  <--type 'a'
{1}[a]

Important code #1:

require('tty').setRawMode( true );

Important code #2:

.createInterface( process.stdin, {} );
share|improve this answer
1  
Nice first answer! – Phil Dec 5 '11 at 11:56
thanks; just have little interest around this – befzz Dec 10 '11 at 13:13

This version uses the keypress module and supports node.js version 0.8 and 0.6. Be sure to add keypress to your package.json or do an npm install keypress.

var keypress = require('keypress')
  , tty = require('tty');

// make `process.stdin` begin emitting "keypress" events
keypress(process.stdin);

// listen for the "keypress" event
process.stdin.on('keypress', function (ch, key) {
  console.log('got "keypress"', key);
  if (key && key.ctrl && key.name == 'c') {
    process.stdin.pause();
  }
});

if (typeof process.stdin.setRawMode == 'function') {
  process.stdin.setRawMode(true);
} else {
  tty.setRawMode(true);
}
process.stdin.resume();
share|improve this answer
1  
This is the only one that works for me. Thanks! – Vineel Adusumilli Sep 8 '12 at 3:02
Great; still works as of node.js v0.10.4. – mklement Apr 15 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.