npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rebound-client

v0.0.7

Published

Laravel Echo Client library for beautiful Engine.io integration

Downloads

11

Readme

Rebound Client

This is a Laravel Echo inspired websocket client.

Works in conjunction with the Rebound Server: https://github.com/leemason/rebound-server.

Originally planned to work with/over socket.io I found it too opinionated, so I took the underlying engine.io library and built a "channel orientated" client library.

Because it uses engine.io as the base client you still benefit from all the fall backs, and reconnection functionality.

And because its Echo inspired everything is targeted towards channels > events, no namespaces or rooms here.

Installation

npm install rebound-client --save

If using any sort of bundler you can:

var Socket = require('rebound-client');
var socket = new Socket('domain:port', opts);

If you just want the compiled, minified script it can be found at dist/rebound-client.min.js.

And you can access it in the global scope via rebound.Socket.

<script src="./rebound-client.min.js"></script>
<script>
(function(){
    var socket = new rebound.Socket('domain:port', {csrf: '{{ csrf_token() }}'});
})();

You must provide the web socket domain and port its hosted on, and an optional options object. I guess this could be used outside of Laravel, but the core use case is Laravel, so you can pass in your csrf token to the opts object as per the example. Or add a meta tag to your page and this will be referenced instead:

<meta name="csrf-token" content"{{ csrf_token() }}"/>

You can create a connection with either path, and options. Or just pass in an options object as the first parameter.

var socket = new rebound.Socket('domain:port', {csrf: '{{ csrf_token() }}'});
//or
var socket = new rebound.Socket({
    host: 'domain',
    port: 3000,
    //other opts, etc
    csrf: '{{ csrf_token() }}'
});

These parameters are passed directly to the underlying engine.io instance. Please see their documentation for possible options.

Once you have a connected instance you can create/access channels.

Channels

Channels are how you seperate your events, the core use case of the package is with Laravel intergration, so your "channels" defined in your Laravel App events, are the channels that get distributed via your websockets.

Channels have the following methods:

connected(); connection status

then(callback); callback called after succesful connection with channel as property (if already connected just fires callback)

listen(event, callback); register a callback for the event. the callback is given a data object containing the event, channel, data (see example).

leave(); disconnect from the channel, no future events received.

There are 3 different types of channel:

Public: var channel = socket.channel('name'); || var channel = socket.subscribe('name');

Public channels arent authorized, anybody can access them and be sent events.

Private: var channel = socket.private('name'); || var channel = socket.subscribe('private-name');

Private channels are as the name suggests, private. When you request access to a private channel (determined by the prefix "private-") the rebound server will first validate your authentication by doing a post request to your laravel app, where authorization will be granted or denied (docs to come on this soon).

Presence: var channel = socket.presence('name'); || var channel = socket.subscribe('presence-name');

Presence channels must be authenticated just like private channels, but once your authenticated your given extra methods:

members(); the current list of members provided as socket_id => user values.

joining(callback); register a callback when a new member joins the channel, the callback is given the latest members object and the channel as arguments.

leaving(callback); register a callback when a member leaves the channel, the callback is given the latest members object and the channel as arguments.

Events

Events are fired on channels, you can't listen for events in the global scope, you must be listening on a channel.

Each event gets given 1 argument which contains the following properties:

function(res){
    res.event // the event name
    res.channel // the channel name
    res.data // the data sent from laravel with the event
}

Example

<script src="./rebound-client.min.js"></script>
<script>
(function(){
    var socket = new rebound.Socket('http://domain.com:3000/', {csrf: '{{ csrf_token() }}'});

    var publicChannel = socket.channel('channel-name');

    publicChannel.then(function(channel){
        // when connected
        channel.listen('App\\Events\\SomeEvent', function(res){

            // res.event = event name
            // res.channel = channel
            // res.data = data sent

        });
    });

    // or outside the then callback
    channel.listen('App\\Events\\SomeEvent', function(res){

        // res.event = event name
        // res.channel = channel
        // res.data = data sent

    });

    // want to leave?
    publicChannel.leave();


    // will trigger a post request to authenticate, if not authenticated you wont get subscribed! (info in server docs)
    // channel name gets prefixed with "private-"
    var privateChannel = socket.channel('channel-name');

    privateChannel.then(function(channel){
        // when connected
        channel.listen('App\\Events\\SomeEvent', function(res){

            // res.event = event name
            // res.channel = channel
            // res.data = data sent

        });

    });

    //want to leave?
    privateChannel.leave();


    // will trigger a post request to authenticate, as with private channel
    // channel name gets prefixed with "presence-"
    var presenceChannel = socket.channel('channel-name');

    presenceChannel.then(function(channel){
        // when connected
        channel.listen('App\\Events\\SomeEvent', function(res){

            // res.event = event name
            // res.channel = channel
            // res.data = data sent

        });

        // get list of members
        channel.members;

        // get your info
        channel.members.me;

        // loop members
        channel.members.each(function(member){

        });

        //get member by id
        channel.members.get(id);

        // listen for new members
        channel.joining(function(members, channel){

        });

        // listen for leaving members
        channel.leaving(function(members, channel){

        });

    });


    //want to leave?
    presenceChannel.leave();

})();
</script>