Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Robotjs | 11,898 | 455 | 256 | 2 months ago | 34 | December 08, 2019 | 182 | mit | C | |
Node.js Desktop Automation. | ||||||||||
Hotkeys Js | 6,277 | 609 | 413 | 19 hours ago | 93 | November 26, 2023 | 128 | mit | JavaScript | |
➷ A robust Javascript library for capturing keyboard input. It has no dependencies. | ||||||||||
Keyboard | 3,401 | 142 | 381 | 6 months ago | 35 | March 23, 2020 | 362 | mit | Python | |
Hook and simulate global keyboard events on Windows and Linux. | ||||||||||
Hotkey | 3,125 | 2 | 7 | a day ago | 36 | October 31, 2023 | 8 | mit | JavaScript | |
Trigger an action on an element with a keyboard shortcut. | ||||||||||
React Hotkeys Hook | 2,209 | 6 | 364 | 2 days ago | 104 | July 04, 2023 | 46 | mit | TypeScript | |
React hook for using keyboard shortcuts in components. | ||||||||||
Angular Hotkeys | 1,704 | 218 | 14 | 4 years ago | 17 | February 18, 2016 | 106 | mit | JavaScript | |
Configuration-centric keyboard shortcuts for your Angular apps. | ||||||||||
Keyboardshortcuts | 1,544 | 11 days ago | 11 | February 21, 2021 | 19 | mit | Swift | |||
⌨️ Add user-customizable global keyboard shortcuts (hotkeys) to your macOS app in minutes | ||||||||||
Win Vind | 1,479 | 22 days ago | 60 | mit | C++ | |||||
You can operate Windows with key bindings like Vim. | ||||||||||
Ninja Keys | 1,406 | 7 | 6 months ago | 22 | July 01, 2022 | 26 | mit | TypeScript | ||
Keyboard shortcuts interface for your website. Working with static HTML, Vanilla JS, Vue, React, Svelte. | ||||||||||
Capslock Plus | 1,019 | 2 months ago | 52 | gpl-2.0 | AutoHotkey | |||||
An efficiency tool that provides various functions by enhancing the Caps Lock key into a modifier key. |
Node.js Desktop Automation. Control the mouse, keyboard, and read the screen.
RobotJS supports Mac, Windows, and Linux.
This is a work in progress so the exported functions could change at any time before the first stable release (1.0.0). Ideas?
Check out some of the cool things people are making with RobotJS! Have your own rad RobotJS project? Feel free to add it!
Install RobotJS using npm:
npm install robotjs
It's that easy! npm will download one of the prebuilt binaries for your OS.
You can get npm here if you don't have it installed.
If you need to build RobotJS, see the building section. Instructions for Electron.
// Move the mouse across the screen as a sine wave.
var robot = require("robotjs");
// Speed up the mouse.
robot.setMouseDelay(2);
var twoPI = Math.PI * 2.0;
var screenSize = robot.getScreenSize();
var height = (screenSize.height / 2) - 10;
var width = screenSize.width;
for (var x = 0; x < width; x++)
{
y = height * Math.sin((twoPI * x) / width) + height;
robot.moveMouse(x, y);
}
// Type "Hello World" then press enter.
var robot = require("robotjs");
// Type "Hello World".
robot.typeString("Hello World");
// Press enter.
robot.keyTap("enter");
// Get pixel color under the mouse.
var robot = require("robotjs");
// Get mouse position.
var mouse = robot.getMousePos();
// Get pixel color in hex format.
var hex = robot.getPixelColor(mouse.x, mouse.y);
console.log("#" + hex + " at x:" + mouse.x + " y:" + mouse.y);
Read the Wiki for more information!
The RobotJS API is hosted at https://robotjs.io/docs/syntax.
Please ensure you have the required dependencies before installing:
npm install --global --production windows-build-tools
from an elevated PowerShell or CMD.exe)sudo apt-get install libxtst-dev libpng++-dev
).Install node-gyp using npm:
npm install -g node-gyp
Then build:
node-gyp rebuild
See the node-gyp readme for more details.
Module | Status | Notes |
---|---|---|
Mouse | 100% | All planned features implemented. |
Keyboard | 100% | All planned features implemented. |
Screen | 85% | Image search, pixel search. |
Bitmap | 0% | Saving/opening, png support. |
Not currently, and I don't know if it ever will. I personally use Electron/NW.js for global hotkeys, and this works well. Later on I might add hotkey support or create a separate module. See #55 for details.
Soon! This is a bit more complicated than the rest of the features, so I saved it for last. Luckily the code is already there, I just need to write the bindings, and I've already started. Subscribe to #13 for updates.
We've been implementing keys as we need them. Feel free to create an issue or submit a pull request!
The library doesn't have explicit multi-monitor support, so anything that works is kind of on accident. Subscribe to #88 for updates.
For any other questions please submit an issue.
I'm a huge fan of AutoHotkey, and I've used it for a very long time. AutoHotkey is great for automation and it can do a bunch of things that are very difficult in other languages. For example, it's imagesearch and pixel related functions are hard to reproduce on Mac, especially in scripting languages. These functions are great for automating apps that can't be automated like Netflix. This has never been a big deal since I've always used Windows at work, but for the past few years I've been using Mac exclusively.
I like AutoHotkey, but I like Node.js more. By developing RobotJS I get an AutoHotkey replacement on Mac (finally!), and I get to use my favorite language.
TLDR: There's nothing like AutoHotkey on Mac, so I'm making it.
MIT
Based on autopy. Maintained by Jason Stallings.