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

graphql-pubnub-subscriptions

v1.0.0

Published

A GraphQL Subscriptions PubSub Engine for PubNub

Downloads

121

Readme

graphql-pubnub-subscriptions

This package implements the PubSubEngine Interface from the graphql-subscriptions package and also the new AsyncIterator interface. It allows you to connect your subscriptions manager to a PubNub PubSub mechanism to support multiple subscription manager instances.

Installation

npm install graphql-pubnub-subscriptions or yarn add graphql-pubnub-subscriptions

Using as AsyncIterator

Define your GraphQL schema with a Subscription type:

schema {
  query: Query
  subscription: Subscription
}

type Subscription {
    messages: Result
}

type Result {
    message: String!
}

Now, let's create a simple PNPubSub instance:

import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';
const pubsub = new PNPubSub();

Now, implement your Subscriptions type resolver, using the pubsub.asyncIterator to map the event you need:

const SOME_CHANNEL = 'myChannel';

export const resolvers = {
  Subscription: {
    messages: {
      subscribe: () => pubsub.asyncIterator(SOME_CHANNEL),
    },
  },
}

Subscriptions resolvers are not a function, but an object with subscribe method, that returns AsyncIterable.

Calling the method asyncIterator of the PNPubSub instance will subscribe to the topic provided and will return an AsyncIterator binded to the PNPubSub instance and listens to any event published on that topic. Now, the GraphQL engine knows that messages is a subscription, and every time a message is published to that channel and subscribe key, the PNPubSub will PUBLISH the event to all other subscribed instances and those in their turn will emit the event to GraphQL using the next callback given by the GraphQL engine.

The channel doesn't get created automatically, it has to be created beforehand.

If you publish non string data it gets stringified and you have to parse the received message data.

Receive Messages

The received message from PubNub gets directly passed as payload to the resolve/filter function.

Dynamically use a channel based on subscription args passed on the query:

Assuming you have a Subscription defined in the schema like this:

type Subscription {
  messages(channel: String!): Result
}

You can use the passed in channel like so:

export const resolvers = {
  Subscription: {
    messages: {
      subscribe: (_, args) => pubsub.asyncIterator(args.channel),
    },
  },
}

Using both arguments and payload to filter events

NOTE: This is currently not implemented. Feel free to add this capability!

import { withFilter } from 'graphql-subscriptions';

export const resolvers = {
  Subscription: {
    messages: {
      subscribe: withFilter(
        (_, args) => pubsub.asyncIterator(args.channel),
        (payload, variables) => payload, // NOT IMPLEMENTED
      ),
    },
  },
}

Creating the PNPubSub Client

import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';

const pubSub = new PNPubSub({
  subscribeKey: 'some subscribe key',
  publishKey: 'some publish key',
});

Options

These are the options which are passed to the internal PubNub JS SDK. Please Note that not all options are implemented at this time and therefore may not pass through.

Subscription Options

There's an additional option to send some console debugs during execution by passing a debug flag.

import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';

const pubSub = new PNPubSub({
  subscribeKey: 'some subscribe key',
  publishKey: 'some publish key',
  debug: true, // <-- Just add this flag!
});

Authors

David Lin

Acknowledgements