1.0.0 • Published 8 years ago
autoclicker v1.0.0
autocliker
:point_up_2: An autoclicker built with Node.js.
Install
npm i -g autoclicker
Usage
autoclicker
Commands :
S
orR
: start/restart auto clicksP
: stop auto clicksQ
: stop auto clicks & quit
Lib
autoclicker
can be used as a module in an existing application
npm install --save autoclicker
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,
},
});
1.0.0
8 years ago