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

simple-pubsub-server

v1.0.0

Published

A simple PubSub server with persistent storage and configuration settings

Downloads

6

Readme

Bufferstack.IO PubSub Server

This is a simple Publish-Subscribe (PubSub) server implemented in Node.js. It allows publishers to publish data to specific busID/subject channels and subscribers to subscribe to these channels to receive the published data.

Features

  • Publishing: Publishers can send data to specific channels identified by busID/subject.
  • Subscribing: Subscribers can receive data published to specific channels.
  • Central Subject Repository: Provides an endpoint for checking the availability of busID/subject channels.
  • Persistent Storage: Supports storing published data in a JSON file for persistence.

Installation

  1. Clone the repository:

    git clone https://github.com/hj91/pubsub-server.git
  2. Install dependencies:

    cd pubsub-server
    npm install

Usage

  1. Start the server:

    npm start
  2. Use the provided client or implement your own to publish data, subscribe to channels, and check channel availability.

Endpoints

  • Publish: /publish/:busID/:subject (POST) - Publish data to a specific busID/subject channel.
  • Subscribe: /subscribe/:busID/:subject (GET) - Subscribe to a specific busID/subject channel to receive published data.
  • Check Availability: /subjects/:busID/:subject (GET) - Check if a specific busID/subject channel is available for subscription.

Configuration

  • Settings: Configuration settings such as port number are stored in settings.conf.
  • Persistent Storage: Published data is stored in subjects.json for persistence.

Usage

Publishing data

  • curl -X POST -H "Content-Type: application/json" -d '{"message": "Hello, world!"}' http://localhost:3000/publish/bus1/news

Subscribing data

  • curl http://localhost:3000/subscribe/bus1/news

Checking Availibility of channel

  • curl http://localhost:3000/subjects/bus1/news

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.