GithubHelp home page GithubHelp logo

bee.js's Introduction

Bee - Bitwise Event Emitter Build Status

Bee is a JavaScript event emitter which support topics as bitmasks and OFFC (of fucking course) it also works like a charm with normal topics such as string ones; as you already do and probably don't knew.

Well, what?

Nothing. Probably your code hurts 'cause you always spend more keystrokes when you want to listen to both events and have the same callback for them. Don't understand what I mean? Great, let's zoom it:

var myAwesomeCallback = function() {
    // some sort of voodoo happens here.
    // ...
};

target.on('event:a', myAwesomeCallback);
target.on('event:b', myAwesomeCallback);

Hell yeah. :trollface:.

We already overcome those kind of stuff, let's go ahead playing with simple bitwise operations such as:

var EVENT_A = 1; // 1 << 0
var EVENT_B = 2; // 1 << 1

target.on(
    EVENT_A | EVENT_B,
    myAwesomeCallback
);

IHA! We're on the way, much better, nein?

Why? when?

I'm drunk, can't explain now.

Contributing

That's why GitHub exists, bro. Then, you can, always and all ways. And also we'll bid you a beer if your PR change my life.

๐Ÿป

bee.js's People

Contributors

andreyvital avatar txgruppi avatar

Stargazers

Tadeu Zagallo avatar  avatar

Watchers

James Cloos avatar  avatar

bee.js's Issues

Create a standard event object

This event object should be passed as first argument for the callbacks.

It must have:

  • .source the object which emitted the event
  • .name the topic used to emit the event
  • .stopImmediatePropagation to break the emit loop

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.