Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 705 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 705 Bytes

jsautogui

An implementation of pyautogui to node.js

Installation

npm install jsautogui

Importing

const jsautogui = require("jsautogui");

Waiting for JSAutoGUI to be ready

jsautogui.ready().then(() => {
    console.log("JAG is ready!");
});

Running a method from PYAutoGUI

autogui.screenshot("test.png").then(() => {
    console.log("Saved the screenshot!");
});