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

@savanapoint/pub-sub

v0.1.2

Published

A Pub/Sub library using Firebase Firestore

Downloads

3

Readme

@savanapoint/pub-sub

The @savanapoint/pub-sub library facilitates implementing a pub/sub messaging system using Firebase Firestore and TypeScript. It enables publishing messages to channels and subscribing to receive messages from those channels.

Installation

To install the library, run the following command:

npm install @savanapoint/pub-sub

Usage

Initialization

First, initialize the PubSub class with your Firebase configuration:

import PubSub from '@savanapoint/pub-sub';

const firebaseConfig = {
  apiKey: process.env.FIREBASE_API_KEY,
  authDomain: process.env.FIREBASE_AUTH_DOMAIN,
  databaseURL: process.env.FIREBASE_DATABASE_URL,
  projectId: process.env.FIREBASE_PROJECT_ID,
  storageBucket: process.env.FIREBASE_STORAGE_BUCKET,
  messagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
  appId: process.env.FIREBASE_APP_ID,
};

const pubSub = new PubSub(firebaseConfig);

Publish a Message

To publish a message to a channel, use the publish method of the PubSub class:

pubSub.publish('channelName', 'Hello, World!', ['subscriberId1', 'subscriberId2'])
  .then(() => {
    console.log('Message published successfully');
  })
  .catch((error) => {
    console.error('Error publishing message:', error);
  });
  • channel: The name of the channel where the message will be published.
  • message: The content of the message to be published.
  • subscribers: List of subscriber IDs who will receive the message.

Subscribe to a Channel

To subscribe to a channel and receive messages, use the subscribe method of the PubSub class:

pubSub.subscribe('channelName', ['subscriberId1', 'subscriberId2'], (message) => {
    console.log('Received message:', message);
  })
  .catch((error) => {
    console.error('Error subscribing to channel:', error);
  });
  • channel: The name of the channel to which the subscribers are subscribing.
  • subscriberIds: List of subscriber IDs who should receive the messages.
  • onMessage: Callback function that will be called when a new message is received. It receives the message as an argument.

Error Handling

  • Errors When Publishing Messages: Any error that occurs during the publishing of the message will be caught and logged to the console.
  • Errors When Subscribing to Channels: Any error that occurs during subscription to the channel will be caught and logged to the console.

Contributing

If you would like to contribute to the library, please follow these steps:

  1. Fork the repository.
  2. Create a branch for your changes.
  3. Make your modifications and test them.
  4. Submit a pull request to the main repository.

License

The library is licensed under the MIT License.