Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charlesstover/konami-js
Konami.js is an ES6 JavaScript instance that allows web developers to implement the Konami code on their web pages. By pressing up, up, down, down, left, right, left, right, B, A, Enter, one or more custom JavaScript functions will execute.
https://github.com/charlesstover/konami-js
event-listener javascript konami npm npmjs travis travis-ci travisci
Last synced: about 1 month ago
JSON representation
Konami.js is an ES6 JavaScript instance that allows web developers to implement the Konami code on their web pages. By pressing up, up, down, down, left, right, left, right, B, A, Enter, one or more custom JavaScript functions will execute.
- Host: GitHub
- URL: https://github.com/charlesstover/konami-js
- Owner: CharlesStover
- License: mit
- Archived: true
- Created: 2018-05-09T16:14:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-01T13:54:00.000Z (about 3 years ago)
- Last Synced: 2024-05-10T18:58:09.749Z (6 months ago)
- Topics: event-listener, javascript, konami, npm, npmjs, travis, travis-ci, travisci
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@gamingmedley/konami.js
- Size: 567 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Konami.js [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=↑↑↓↓←→←→🅱🅰,%20now%20in%20JavaScript%20event%20listener%20form&url=https://github.com/GamingMedley/konami.js&via=CharlesStover&hashtags=javascript,webdev,webdeveloper,webdevelopment)
Konami.js is a JavaScript package that allows web developers to implement an event listener for the Konami code on their web pages. By pressing up, up, down, down, left, right, left, right, B, A, Enter, one or more custom JavaScript functions will execute.
[![package](https://img.shields.io/npm/v/@gamingmedley/konami.js.svg)](https://www.npmjs.com/package/@gamingmedley/konami.js)
[![minified size](https://img.shields.io/bundlephobia/min/@gamingmedley/konami.js.svg)](https://www.npmjs.com/package/@gamingmedley/konami.js)
[![minzipped size](https://img.shields.io/bundlephobia/minzip/@gamingmedley/konami.js.svg)](https://www.npmjs.com/package/@gamingmedley/konami.js)
[![downloads](https://img.shields.io/npm/dt/@gamingmedley/konami.js.svg)](https://www.npmjs.com/package/@gamingmedley/konami.js)
[![build](https://travis-ci.com/GamingMedley/konami.js.svg)](https://travis-ci.com/GamingMedley/konami.js)## Examples
### ES6
#### Install
* `npm install @gamingmedley/konami.js --save` or
* `yarn add @gamingmedley/konami.js`#### Adding an Event Listener
```JS
import Konami from '@gamingmedley/konami.js';
Konami.add(() => {
alert('This will alert every time the Konami code is entered.');
});
```#### Adding a Single-Execution Event Listener
```JS
import Konami from '@gamingmedley/konami.js';
Konami.add((unsubscribe) => {
unsubscribe(); // Unsubscribes the listener from future Konami code entries.
alert('This will only alert the first time the Konami code is entered.');
});
```#### Removing an Event Listener
```JS
import Konami from '@gamingmedley/konami.js';
const unsubscribe = Konami.add(() => {
alert('This will not alert, because it will have been removed.');
});
unsubscribe();
```## Methods
### add
Queues a function to be executed when the Konami code is entered by the user.
Returns an unsubscribe function. When executed, the unsubscribe function will disable the associated function from executing in future uses of the Konami code.
#### Parameters
* `function e`: The function to be executed when the Konami code is entered by the user. An unsubscribe function is passed as a parameter to it.
### remove
The function associated with the ID will no longer execute when the Konami code is entered.
Returns `true` on success, `false` on failure.
#### Parameters
* `string id`: The ID of the event to remove.