Giter Club home page Giter Club logo

draht's Introduction

draht

draht provides process-level messaging.

draht

Installation

$ npm install draht

Quick start

The first thing you need to do is to integrate draht into your application. For that add a reference to the draht module.

const Draht = require('draht');

Accessing the global draht

To access the global draht, you need to get the instance property:

const draht = Draht.instance;

Creating your own draht

If you need your own draht channel, create a new instance:

const draht = new Draht();

Using a draht

Emitting events

To emit an event, call the draht's emit function and provide the event name as well as its payload as parameters. Optionally, you may specify a callback.

draht.emit('foo', { bar: 'baz' }, () => {
  // ...
});

Please note that the emit function internally calls process.nextTick to make sure that an event is processed asynchronously.

You can also emit namespaced events. For that, prefix the event name with the namespace name and separate them by using the expression ::.

draht.emit('demo::foo', { bar: 'baz' }, () => {
  // ...
});

Subscribing to events

To subscribe to an event, call the on function and provide the name of the event you want to subscribe to as well as an event handling function.

draht.on('demo::foo', (evt, callback) => {
  // ...
});

Alternatively you may also use the once function to subscribe to an event and have the handler automatically removed afterwards.

draht.once('demo::foo', (evt, callback) => {
  // ...
});

If you want to receive all events within a specific namespace, you can use the * character.

draht.on('demo::*', (evt, callback) => {
  // ...
});

Nested namespaces are supported as well, but please note that when using wildcards you need to specify them for each namespace level separately. E.g., if you have events in the form foo::bar::baz and you would like to subscribe to any event in the foo namespace, use foo::*::*, not foo::*.

Unsubscribing from events

From time to time you need to unsubscribe from an event. For this use the removeListener function and provide the event name as well as the handler to remove. Please note that in this case you need to provide the very same handler instance to removeListener as you previously used.

const onFoo = function (evt, callback) {
  // ...
};

draht.on('demo::foo', onFoo);
// ...
draht.removeListener('demo::foo', onFoo);

To remove all listeners for an event use removeAllListeners and provide only the event name.

draht.removeAllListeners('demo::foo');

If you omit the event name, too, then all listeners for all events are unsubscribed.

draht.removeAllListeners();

Running the build

To build this module use roboter.

$ bot

License

The MIT License (MIT) Copyright (c) 2013-2018 the native web.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

draht's People

Contributors

goloroden avatar grundhoeferj avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

the-cc-dev

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.