An open API service indexing awesome lists of open source software.

https://github.com/oguzhanumutlu/jsautogui-archived

An implementation of pyautogui to node.js
https://github.com/oguzhanumutlu/jsautogui-archived

js port pyautogui python

Last synced: 6 months ago
JSON representation

An implementation of pyautogui to node.js

Awesome Lists containing this project

README

          

# jsautogui

# This package is deprecated. Use the package `jsautogui` instead! Click me to view it.

An implementation of pyautogui to node.js

[![](https://img.shields.io/badge/Discord-black?style=for-the-badge&logo=discord)](https://discord.gg/emAhrw3mvM)

# Installation

```shell
npm install jsautogui
```

## Importing

```js
const jsautogui = require("jsautogui");
```

## Waiting for JSAutoGUI to be ready

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

## Running a method from PYAutoGUI

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