keycharm
Easy and free library for binding keys.
Install
Keycharm is on npm so you can install it with:
npm install keycharm
Import
IIFE (browser)
After importing the script keycharm
is availible globally:
<script src="https://unpkg.com/keycharm/keycharm.js">
CommonJS
const keycharm = require('keycharm');
ESM
import keycharm from 'keycharm';
Usage
var keys = keycharm(options);
keys.bind("a", function () {}, 'keydown');
Available options (all are optional)
{
container: document.getElementById("element"),
preventDefault: false
}
Supported keys
'a'-'z', 'A'-'Z', '0'-'9', 'space', 'enter', 'ctrl', 'alt', 'tab', 'shift', 'delete', 'backspace', '-', '=', '[', ']',
'esc', 'F1'-'F12', 'pageup', 'pagedown',
'left', 'up', 'right', 'down',
'num0'-'num9', 'num/', 'num*', 'num-', 'num+', 'num.'
Each initiation of keycharm has its own bindings to the key events.
Available methods
.bind(key, callback, [type]);
.unbind(key, [callback], [type]);
.reset();
.destroy();
.getKey(event);
.bindAll(function, 'keydown' or 'keyup');
Common Pitfalls:
You might feel tempted to use the keycharm library to bind keys to elements other than just form elements. Great, however, in this case you should be aware of the fact that besides giving focus to the element (e.g. programmatically element.focus()
) you also need to add a tabindex! Simply focussing will not work.
License
Keycharm is Dual-licensed with both the Apache 2.0 license as well as the MIT license.
I'll leave it up to the user to pick which one they prefer.