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

appsync-subscriber-client

v0.0.3

Published

A simple and lightweight client for subscribing to AWS AppSync GraphQL subscriptions using @theonlyamos/appsync-subscriber-client

Downloads

6

Readme

AppSync Subscriber Client

npm version License

A lightweight and flexible client for subscribing to AWS AppSync GraphQL subscriptions using EventSource.

It works with @theonlyamos/appsync-subscriber from the backend to enable subscription to AWS AppSync GraphQL from a nodejs server.

Installation

You can install @theonlyamos/appsync-subscriber-client using npm:

npm install @theonlyamos/appsync-subscriber-client

Usage

Configuration

Before using the AWSAppSyncSubscriberClient, you need to configure the backend URL:

import AWSAppSyncSubscriberClient from '@theonlyamos/appsync-subscriber-client';

AWSAppSyncSubscriberClient.configure({
  url: 'https://your-backend.com/graphql',
  verbose: false // Set to true for logging
});

Creating a Subscription

To create a subscription instance, use the graphql method and provide your GraphQL subscription query and variables:

const subscriber = AWSAppSyncSubscriberClient.graphql({
  query: `
    subscription MySubscription($id: ID!) {
      someSubscription(id: $id) {
        id
        value
      }
    }
  `,
  variables: {
    id: '123'
  }
});

Subscribing to Events

Once you have a subscription instance, you can subscribe to events by calling the subscribe method and providing callbacks for handling subscription data and errors:

subscriber.subscribe({
  next: (data) => {
    console.log('Received data:', data);
    // Handle subscription data
  },
  error: (error) => {
    console.error('Subscription error:', error);
    // Handle subscription errors
  }
});

The next callback will be called whenever new data is received from the subscription, and the error callback will be called if an error occurs during the subscription.

Unsubscribing

To stop receiving events from the subscription, call the unsubscribe method:

subscriber.unsubscribe();

API

AWSAppSyncSubscriberClient

configure(configuration)

Configures the AWSAppSyncSubscriberClient with the provided options.

  • configuration.url (string): The URL of the backend GraphQL API.
  • configuration.verbose (boolean): Whether to enable verbose logging (default: false).

graphql(subscriptionConfig)

Creates a new AWSAppSyncSubscriberClient instance with the provided subscription configuration.

  • subscriptionConfig.query (string): The GraphQL subscription query.
  • subscriptionConfig.variables (object, optional): Variables for the subscription query.

subscribe(callbacks)

Subscribes to the AppSync subscription and sets up event handlers.

  • callbacks.next (function, optional): Callback function for handling subscription data.
  • callbacks.error (function, optional): Callback function for handling subscription errors.

Returns the current instance for method chaining.

unsubscribe()

Disconnects from the AppSync subscription.

Example

import AWSAppSyncSubscriberClient from '@theonlyamos/appsync-subscriber-client';

// Configure the client
AWSAppSyncSubscriberClient.configure({
  url: 'https://your-backend.com/graphql',
  verbose: true
});

// Create a subscription instance
const subscriber = AWSAppSyncSubscriberClient.graphql({
  query: `
    subscription MySubscription($id: ID!) {
      someSubscription(id: $id) {
        id
        value
      }
    }
  `,
  variables: {
    id: '123'
  }
}).subscribe({
  next: (data) => {
    console.log('Received data:', data);
  },
  error: (error) => {
    console.error('Subscription error:', error);
  }
});

// Unsubscribe when needed
setTimeout(() => {
  subscriber.unsubscribe();
}, 60000); // Unsubscribe after 1 minute

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.

License

This project is licensed under the Apache-2.0 License.