1.0.1 • Published 4 years ago

sendkeys-win v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

sendkeys-win

A 'SendKeys' function for Windows.

This is an implementation of WshShell.SendKeys method (VBScript).

See more informations here.

Installation

yarn add sendkeys-win

# or

npm install sendkeys-win

Usage

const sendKeys = require('sendkeys-win');

sendKeys('Hello, World!').then(() => {
  console.log('Sent.');
}).catch((err) => {
  console.error(err);
});

License

MIT © Matheus Alves