Skip to content

OguzhanUmutlu/jsautogui-archived

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!");
});