summary refs log tree commit diff
path: root/keys.js
blob: 3f46f1464e53ecb210429eda4c449128332c4eed (plain)
1
2
3
4
5
6
7
8
9
10
import readline from 'node:readline';

readline.emitKeypressEvents(process.stdin);

if (process.stdin.isTTY) process.stdin.setRawMode(true);

process.stdin.on('keypress', (chunk, key) => {
    console.log(JSON.stringify(key))
    process.exit();
});