Giter Site home page Giter Site logo

eventbus's Introduction

Bambi's EventBus

An Event bus class to be used as a standalone object, or to extend existing objects

One to two paragraph statement about your product and what it does.

Installation

it is possible to use npm to install it as package with your existing project as a module, or as a global node module. this can also be used in the browser.

Inside your projects directory as

npm install bambis-eventbus

As a global module:

npm install bambis-eventbus -g

Or use as a package from github:

git clone https://github.com/BambiHaber/EventBus.git

Files ready to be used would be under the 'dist' directory (EventBus.js, and a minified EventBus.min.js)

Node/Browser example

It possible to use the package in the browser, or in node.

  • Nodejs
    • After installing the package, inside your app.js file you can import the module and use it straight away
const EventBus = require('bambis-eventbus');

let eventBus = new EventBus();

eventBus.listenTo('hello', () => {
        console.log('Hello world');
});

eventBus.trigger('hello');

Would output 'Hello World'

  • Browser
    • After installing the package, html file you can apply a script tag pointing to the script, or copy the script from the 'node_modules/bambis-eventbus/dist' folder (regular or minified version)
    • Example cases are in the dist/example directory, you can npm start command inside that directory and it would start a demo server with example code.

Compiling manually

If by any case you would like to build the package yourself, you can go to the root directory and run the npm install, then gulp. This will generate the dist directory.

Enjoy

eventbus's People

Contributors

bambihaber avatar

Watchers

 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.