Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthieulemoine/autoclicker
:point_up_2: An autoclicker built with Node.js.
https://github.com/matthieulemoine/autoclicker
autoclicker automation clicker-game nodejs
Last synced: 18 days ago
JSON representation
:point_up_2: An autoclicker built with Node.js.
- Host: GitHub
- URL: https://github.com/matthieulemoine/autoclicker
- Owner: MatthieuLemoine
- Created: 2017-05-07T13:44:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-07T14:05:58.000Z (over 7 years ago)
- Last Synced: 2024-12-14T19:37:05.860Z (20 days ago)
- Topics: autoclicker, automation, clicker-game, nodejs
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# autocliker
:point_up_2: An autoclicker built with Node.js.
## Install
```
npm i -g autoclicker
```## Usage
```
autoclicker
```Commands :
- ``S`` or ``R`` : start/restart auto clicks
- ``P`` : stop auto clicks
- ``Q`` : stop auto clicks & quit## Lib
``autoclicker`` can be used as a module in an existing application
```
npm install --save autoclicker
``````javascript
const autoClicker = require('autoclicker');
// S key
const START = 31;
// R key
const RESTART = 19;
// P key
const PAUSE = 25;
// Q key
const STOP = 30;autoCliker({
keys : {
START,
RESTART,
PAUSE,
STOP,
},
});
```