Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。
想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
1年前关闭。
Improve this question
我一直在寻找支持鼠标和键盘监听和执行的 native nodejs模块
我发现了这个.. https://npmjs.org/package/mouse
但是源代码看起来只支持浏览器。
然后使用nw.js进行监听:
https://github.com/nwjs/nw.js/wiki/Shortcut
想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
1年前关闭。
Improve this question
我一直在寻找支持鼠标和键盘监听和执行的 native nodejs模块
我发现了这个.. https://npmjs.org/package/mouse
但是源代码看起来只支持浏览器。
最佳答案
我一直在研究用于发送鼠标和键盘事件的模块RobotJS。
示例代码:
var robot = require("robotjs");
//Get the mouse position, retuns an object with x and y.
var mouse=robot.getMousePos();
console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y);
//Move the mouse down by 100 pixels.
robot.moveMouse(mouse.x,mouse.y+100);
//Left click!
robot.mouseClick();
然后使用nw.js进行监听:
https://github.com/nwjs/nw.js/wiki/Shortcut
10-05 20:13