Codebase list node-keypress / run/b1ffb5d9-d0e7-445e-a79b-acfbc568984f/main test.js
run/b1ffb5d9-d0e7-445e-a79b-acfbc568984f/main

Tree @run/b1ffb5d9-d0e7-445e-a79b-acfbc568984f/main (Download .tar.gz)

test.js @run/b1ffb5d9-d0e7-445e-a79b-acfbc568984f/mainraw · history · blame

var keypress = require('./')
keypress(process.stdin)

if (process.stdin.setRawMode)
  process.stdin.setRawMode(true)
else
  require('tty').setRawMode(true)

process.stdin.on('keypress', function (c, key) {
  console.log(0, c, key)
  if (key && key.ctrl && key.name == 'c') {
    process.stdin.pause()
  }
})
process.stdin.on('mousepress', function (mouse) {
  console.log(mouse)
})

keypress.enableMouse(process.stdout)
process.on('exit', function () {
  //disable mouse on exit, so that the state is back to normal
  //for the terminal.
  keypress.disableMouse(process.stdout)
})

process.stdin.resume()