#Key
Key is a tiny little keycode library for your browser. It makes keybound event assertions super simple.
Installation
Browser
To use Key without a package manager in-browser, copy/link
to client/key.js
or client/key.min.js
and start using.
NPM
Just install with npm install key
or add it to your package.json
Usage
Key is bound to the window
object, so usage in the browser is simple
var key = window.key
Key will also work fine with a dependency manager like Browserify (both Javascript and CoffeeScript).
var key = require('key')
Example
pressed = 13;
key.get(pressed).name;
key.is(key.code.special.enter, pressed);
key.is(key.code.alnum.a, pressed);
License
The content of this library is released under the MIT License by Andrew Lawson.
You can find a copy of this license at http://www.opensource.org/licenses/mit