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

@replygirl/plushie

v2.0.1

Published

pusher-js wrapper to simplify auth, subscriptions, & events

Downloads

2

Readme

plushie

pusher-js wrapper to simplify auth, subscriptions, & events

node-current (scoped) GitHub top language Libraries.io dependency status for latest release, scoped npm package Maintainability Test Coverage GitHub issues GitHub pull requests

plushie makes working with Pusher channels easy:

  • Authentication: Immediately connects to a private-connections channel to authenticate your session for use with private-* and presence-* channels
  • Subscriptions: Subscribe and bind to events in the same step
  • Client events: Trigger events that are passed through a pausable queue that keeps you under Pusher's rate limits.

Installation

yarn add @replygirl/plushie

Usage

import Plushie from '@replygirl/plushie'

// Create a Plushie
const plushie = new Plushie({
  // REQUIRED: Your app's public key
  key: 'myKey',

  // OPTIONAL:
  // - Required for private & presence channels
  // - Required to trigger events
  authEndpoint: '/my-auth-endpoint'
})

// Bind to events on a channel
const channel = plushie.subscribe({
  channelName: 'my-channel-name',
  bindings: [
    {
      eventName: 'my-event-name',
      callback: data => console.info(data)
    }
  ]
})

// Add more event bindings later
channel.bind([
  {
    eventName: 'my-other-event-name',
    callback: data => console.info(data)
  }
])

// Trigger a client event
channel.trigger([
  {
    eventName: 'my-event-name',
    data: 'Hello world'
  }
])

// Let it go
channel.unsubscribe()

Controlling the queue

Your Plushie's event queue will automatically start & stop as you subscribe & unsubscribe, but you can intervene too:

// Stop triggering events
plushie.eventQueue.pause()

// Resume triggering events
plushie.eventQueue.play()

Tearing down

plushie.unsubscribeAll()

Advanced features

This doc keeps it simple, but a lot of Plushie's internal logic is exposed to give you more options. Explore the definition files or source code to figure out some neat tricks.

New in v2.x

  • The event queue will only run when you're subscribed to a channel
  • Full typing
    • Channels are now PlushieChannels
    • Event bindings are now PlushieEventBindings
    • Events are now PlushieEvents
  • Generics: new Plushie<T, U>
    • T is the base type of your event data
    • U is the base return type of your event callbacks
  • Bind an array of events with Plushie.bind
  • Get the name of a channel with PlushieChannel.name
  • Get the Plushie instance a channel belongs to with PlushieChannel.plushie

Migrating from v1.x

Unless you were using undocumented capabilities, the only breaking change is how you use Plushie.subscribe:

// Before
plushie.subscribe('my-channel-name', {
  'my-event-name': data => console.info(data)
})

// After
plushie.subscribe({
  channelName: 'my-channel-name',
  bindings: [
    {
      eventName: 'my-event-name',
      callback: data => console.info(data)
    }
  ]
})

License

ISC (c) 2020 replygirl