Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

key

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

key - npm Package Compare versions

Comparing version 0.1.0 to 0.1.2

2

package.json
{
"name": "key",
"version": "0.1.0",
"version": "0.1.2",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "A tiny little keycode library",

#Key
Key is a tiny little keycode library for your browser. It makes keybound event assertions super simple.
[![Build Status](https://secure.travis-ci.org/adlawson/key.png)](http://travis-ci.org/adlawson/key)
A tiny little keycode library
## 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
```js
var key = window.key
```
Key will also work fine with a dependency manager like [Browserify][browserify] (both Javascript and CoffeeScript).
```js
var key = require('key')
```
## Example
```js
pressed = 13; // An event keycode (eg jQuery.event.which)
key.get(pressed).name; // "Enter"
key.is(key.code.special.enter, pressed); // true
key.is(key.code.alnum.a, pressed); // false
```
## License
The content of this library is released under the **MIT License** by **Andrew Lawson**.<br>
You can find a copy of this license at http://www.opensource.org/licenses/mit
<!-- Meta -->
[browserify]: http://github.com/substack/node-browserify
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