Socket
Socket
Sign inDemoInstall

lepikevents

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lepikevents

Global mouse and keyboard events Listener


Version published
Weekly downloads
19
increased by46.15%
Maintainers
1
Weekly downloads
 
Created
Source

Lepik Events

An event based, Global Keyboard and Mouse listener.

Installing

npm install lepikevents

Coding

// Require lepikEvents
const lepikEvents = require('lepikEvents');

lepikEvents.events.on('keyRelease', (data) => {
  // Returns key released as String 
  console.log(data); // e||esc||space||backspace ...
});

lepikEvents.events.on('mouseClick', (data) => {
  // Returns objects containing mouse position and button clicked 
  console.log(data); // {x:361, y:235, button:1*} 
  // *1 for left, 2 for right, 3 for middle
});

All events

Curently there are only 2 events, mouseClick and keyRelease. I will try to implement more in future.

Requirements

Lepik Events uses Python keyboard and Python mouse which runs on Python.

If your are on Windows, then you don't even have to have it installed, cause thanks to Pyinstaller, the code is compiled into executable.

License

The code is licensed under the MIT license (http://opensource.org/licenses/MIT). See LICENSE file.

Keywords

FAQs

Package last updated on 02 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc