Coder Social home page Coder Social logo

robotjs's Introduction

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

robotjs's People

Contributors

tymski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.