Skip to content
/ robotjs Public

Desktop Automation in JavaScript, wrapper for robotjs.io

License

Notifications You must be signed in to change notification settings

Tymski/robotjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RobotJS-wrapper

More natural Desktop Automation.

What is this?

This is a simple wrapper around RobotJS (https://robotjs.io) that changes it's naming convention. You still can use robotjs naming though.

I provide mouse, keyboard and screen objects with their methods, for exaple:

// RobotJS-wrapper
mouse.scroll(0,0);
mouse.click();

// RobotJS
robot.scrollMouse(0,0);
robot.mouseClick();

If you import robot (default) instead, you can use it as regular robotjs, or use the other convention:

robot.mouse.click(); // wrapper style
robot.mouseClick(); // robotjs style

Installation

Install using Node Package Manager: npm install robotjs-wrapper

Usage

import {keybaord,mouse} from 'robotjs-wrapper';
mouse.move(300,300);
mouse.click();
keyboard.type("I am typing!");

Or:

import robot from 'robotjs-wrapper';
robot.mouse.move(300,300);
robot.mouse.click();
robot.keyboard.type("I am typing!");

Mouse

Logging position of a mouse cursor

import {mouse} from 'robotjs-wrapper';
console.log("Mouse X position:", mouse.x );
console.log("Mouse Y position:", mouse.y );
console.log("Mouse Position:", mouse.position );

Changing only one mouse coordinate

import {mouse} from 'robotjs-wrapper';
mouse.x = 123;
mouse.y = 456;

Different ways to change mouse position

mouse.setPos(x,y);
mouse.setPosition(x,y);
mouse.move(x,y);
mouse.pos = {x,y};
mouse.position = {x,y};

Keyboard

Different ways to type

keyboard.string("I am typing!");
keyboard.type("I am typing!");
keyboard.write("I am typing!");
keyboard.send("I am typing!"); // AutoHotKey style
keyboard.typeString("I am typing!"); // RobotJS style

About

Desktop Automation in JavaScript, wrapper for robotjs.io

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published