Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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,
},
});
```