unhappychoice / cycle-pusher

:recycle: Cycle.js driver for Pusher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cycle-pusher

npm version Libraries.io dependency status for GitHub repo npm bundle size npm GitHub

cycle-pusher is pusher client for cycle.js

Types

const makePusherDirver = (app_key: string, configuration: Config): Driver<Stream<PayloadInput>, PusherSource>

interface PusherSource {
    select(channelName: string, eventName: string): Stream<any>;
}

interface PayloadOutput {
    channelName: string;
    eventName: string;
    data: any;
}

interface PayloadInput {
    channelName: string;
    eventName: string;
    data: any;
}

Usage

function main(sources) {
    const content$ = sources.pusher.select("channel1", "event1") // Receive messages

    const payload$ = Stream.of({ // Send messages
        channelName: "channel1",
        eventName: "client-event1",
        data: { "key": "value" }
    });

    return {
        pusher: payload$
    };
}

const app_key = "";
const config = { // See pusher document
    encrypted: true
};

run(main, {
    pusher: makePusherDirver(app_key, config)
});

see example directory for real usage.

License

see LICENSE

About

:recycle: Cycle.js driver for Pusher

License:MIT License


Languages

Language:TypeScript 80.2%Language:JavaScript 12.6%Language:HTML 7.2%