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
- Host: GitHub
- URL: https://github.com/oguzhanumutlu/jsautogui-archived
- Owner: OguzhanUmutlu
- License: mit
- Created: 2022-08-28T14:28:31.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T13:33:03.000Z (about 2 years ago)
- Last Synced: 2025-03-24T21:51:12.033Z (7 months ago)
- Topics: js, port, pyautogui, python
- Language: JavaScript
- Homepage:
- Size: 215 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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://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!");
});
```