javascript – 用node.js移动鼠标光标

是否有任何方法或模块可以移动光标并使用node.js模拟windows7 / 8中的鼠标点击?

我发现这个库https://www.npmjs.org/package/win_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();

它仍然是一项正在进行的工作,但它会做你想要的!

上一篇:vim配置


下一篇:在Javascript中检测触摸板与鼠标