Home > simple-pubsub

simple-pubsub

Simple-pubsub is a project mainly written in ..., it's free.

A simple and extremely naive implementation of Bayeux Publisher Subscriber protocol using node.js and socket.io for learning purposes.

About

A simple and extremely naive implementation of Bayeux Publisher Subscriber protocol using node.js and socket.io for learning purposes.

What is Publisher-Subscriber pattern?

Publisher-subscriber, also known as pubsub, is a messaging pattern where a set of clients listen to a set of channels. When the messages are sent (published) to a specific channel, all the clients bound to that channel (subscribers) receive such message.

What is Bayeux Protocol?

Bayeux is a protocol specification of the pubsub pattern designed to work over HTTP.

Previous:infer