Skip to content

Instantly share code, notes, and snippets.

@groundwater
Created October 30, 2012 03:08
Show Gist options
  • Save groundwater/3978101 to your computer and use it in GitHub Desktop.
Save groundwater/3978101 to your computer and use it in GitHub Desktop.
Capture a Single Key Press Event
process.openStdin()
process.stdin.setRawMode(true)
process.stdin.on('data',function(key){
console.log(key.toString())
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment