- Jul 2023
-
datatracker.ietf.org datatracker.ietf.org
-
blog.cloudflare.com blog.cloudflare.com
-
demo.mqtt.dev demo.mqtt.dev
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
docs.oasis-open.org docs.oasis-open.org
-
docs.oasis-open.org docs.oasis-open.org
-
www.hivemq.com www.hivemq.com
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
WebSocket support in Pub/Sub works by encapsulating MQTT packets (Pub/Sub’s underlying native protocol) within WebSocket framesExternal link icon
```js // Ensure MQTT.js is installed first // > npm install mqtt import * as mqtt from "mqtt"
// Where 'url' is "mqtts://BROKER.NAMESPACE.cloudflarepubsub.com:8884" function example(url) { let client = mqtt.connect(url, { protocolVersion: 5, reconnectPeriod: 0, username: 'anything', password: jwt, // pass this from a form field in your app clientId: '', })
client.on('connect', function () { client.subscribe(topic, function (err) { if (err) { client.end(); } else { console.log(
subscribed to ${topic}
) } })client.on('message', function (topic, message) { let line = (new Date()).toLocaleString('en-US') + ": " + message.toString() + "\n"; console.log(line) }) } ```
-
-
-
-
www.mnot.net www.mnot.net
Tags
Annotators
URL
-
- Jan 2023
-
datatracker.ietf.org datatracker.ietf.org
- Dec 2022
-
twitter.com twitter.com
Tags
Annotators
URL
-
-
ralphm.net ralphm.net
-
Jaiku-Twitter XMPP interoperability circa 2008
Tags
Annotators
URL
-
-
xmpp.org xmpp.org
-
buddycloud.github.io buddycloud.github.io
Tags
Annotators
URL
-
-
xmpp.org xmpp.org
Tags
Annotators
URL
-
-
mercure.rocks mercure.rocks
-
- Nov 2022
-
xmpp.org xmpp.org
Tags
Annotators
URL
-
-
www.waveprotocol.org www.waveprotocol.org
- Jun 2022
-
github.com github.com
-
blog.skohub.io blog.skohub.io
-
SkoHub supports a novel approach for finding content on the web. The general idea is to extend the scope of Knowledge Organization Systems (KOS) to also act as communication hubs for publishers and information seekers. In effect, SkoHub allows to follow specific subjects in order to be notified when new content about that subject is published.
-
- Feb 2021
-
medium.com medium.com
- Oct 2019
-
engineering.linkedin.com engineering.linkedin.com
-
I have found that "publish subscribe" doesn't imply much more than indirect addressing of messages—if you compare any two messaging systems promising publish-subscribe, you find that they guarantee very different things, and most models are not useful in this domain.
-
- Feb 2017
-
www.zohaib.me www.zohaib.me
Tags
Annotators
URL
-