autoclicker

1.0.0 • Public • Published

autocliker

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

Package Sidebar

Install

npm i autoclicker

Weekly Downloads

4

Version

1.0.0

License

MIT

Last publish

Collaborators

  • matthieulemoine