Giter Site home page Giter Site logo

hellovass / onfire.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hustcc/onfire.js

0.0 2.0 0.0 30 KB

:gun: onfire.js is a simple events dispatcher subscribe / publish library (< 1kb). async, simple and usefull.

Home Page: http://git.hust.cc/onfire.js/

License: MIT License

JavaScript 67.29% HTML 32.71%

onfire.js's Introduction

onfire.js

onfire.js is a simple events dispatcher library (just 0.9kb). simple and usefull.

Can be used in:

  • simple events dispatcher.
  • Cross-component communication of react / vue.js / angular.
  • evnets subscribe and publish.

Live DEMO here. 中文版说明文档点这里

Build Status npm npm npm

1. API method

1. on(event_name, callback, context)

Binding / subscribe the event_name with callback. when has event named event_name fired, callback function will process.

The function will return the eventObj, which can be used to cancel bind with API un(eventObj).

2. one(event_name, callback, context)

Binding / subscribe the event_name with callback only once. And it is will timeout after Trigger.

Only can be Trigger once, then it will be deleted automation.

3. fire(event_name, data1, data2, data3, ...)

Async Trigger / subscribe the event named event_name, and with datas as the input of callback function.

4. fireSync(event_name, data1, data2, ...)

Sync Trigger / subscribe the event named event_name, and with datas as the input of callback function.

5. un(eventObj / event_name / function)

Cancel binding event. You can unbinding a event Object, or just unbinding a event_name, or unbind the callback function.

Get the exist events Array.

6. clear()

Clear all the event.

2. Detail Usage

1. import library

Install javascript library.

npm install onfire.js

You can import it with <script> tag, or use keyword require or import.

import onfire from 'onfire.js';

// or

var onfire = require("onfire.js");

2. simple usage

Use on to subscribe event, use un to cancel, and use fire to publish / trigger the event.

import onfire from 'onfire.js';

function test_callback(data1, data2) {
	console.log('this is a event 1');
}

// bind event and callback
var eventObj = onfire.on('test_event', test_callback);
var eventObj2 = onfire.on('test_event', function(data1, data2) {
	console.log('this is a event 2');
});

// fire event
onfire.fire('test_event', 'test_data1', 'test_data2');

// cancel bind event
onfire.un(eventObj); // only cancel the eventObj.
onfire.un('test_event'); // cancel all events named `test_event`.
onfire.un(test_callback); // cancel all the `test_callback` functions.

LICENSE

MIT@hustcc

onfire.js's People

Contributors

hustcc avatar pixcai avatar

Watchers

James Cloos 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.