Binding of libuiohook for nodejs
This package help nodejs developer to catch events on mouse and keyboard and register callbacks on every events.
npm install node-iohook
const hook = require('node-iohook')
hook.on('keydown', function(msg){
console.log(msg);
});
hook.start();
node-iohook
work with last nodejs
LTS as well as electron