GithubHelp home page GithubHelp logo

bdwenxi / bd-emitter Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 125 KB

A lightweight event emitter implementation base on typescript.

License: MIT License

JavaScript 64.63% TypeScript 35.37%
emitter eventemitter event-emitter eventbus

bd-emitter's Introduction

bd-emitter

A lightweight event emitter implementation base on typescript.

Getting Started

Install

Install the bd-emitter package via npm:

npm install bd-emitter

Install the bd-emitter package via yarn:

yarn add bd-emitter

Import or Require

import EventEmitter from 'bd-emitter';

const EventEmitter = require('bd-emitter');

Usage

import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

emitter.on('search', function (...args) {
    console.log(args);
});

setTimeout(
    function () {
        emitter.emit('search', 'Baidu');
    },
    1000
);

API

on(eventName: string, callback: Function, context: Object)

Register a specific callback to be called on a custom event.

import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

const callback = function (...args) {
    console.log(...args);
};

emitter.on('search', callback);
emitter.emit('search', 'Baidu AI'); // Baidu AI

once(eventName: string, callback: Function, context: Object)

Similar to on() but the callback is removed after it is invoked once.

import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

const callback = function (...args) {
    console.log(...args);
};

emitter.once('search', callback);
emitter.emit('search', 'Baidu AI'); // Baidu AI
emitter.emit('search', 'Baidu AI'); // nothing

off(eventName?: string, listener?: Function)

eventName is optional, if provided only listeners for that event name are removed, otherwise remove all events.

import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

const callback = function (...args) {
    console.log(...args);
};

emitter.on('search', callback);
emitter.emit('search', 'Baidu AI'); // Baidu AI
emitter.off('search', callback);
emitter.emit('search', 'Baidu AI'); // nothing
import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

const callback1 = function (...args) {
    console.log(...args);
};

const callback2 = function (...args) {
    console.log(...args);
};

emitter.on('custom:search', callback1);
emitter.on('custom:navigation', callback2);
emitter.emit('custom:search', 'Baidu Search'); // Baidu Search
emitter.emit('custom:navigation', 'Baidu Navigation'); // Baidu Navigation

emitter.off();

emitter.emit('custom:search', 'Baidu Search'); // nothing
emitter.emit('custom:navigation', 'Baidu Navigation'); // nothing

emit(eventName: string, ...args: any[])

Emits an event of the given type with the given data.

import EventEmitter from 'bd-emitter';

const emitter = new EventEmitter();

const callback = function (...args) {
    console.log(...args);
};

emitter.on('search', callback);
emitter.emit('search', 'Baidu AI'); // Baidu AI

Running the tests

git clone [email protected]:bdwenxi/bd-emitter.git
yarn
jest

Contributing

bdwenxi ([email protected])

Authors

bdwenxi ([email protected])

License

This project is licensed under the MIT License

bd-emitter's People

Contributors

bdwenxi avatar dependabot[bot] avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.