Show HN: Offline JavaScript PubSub between browser tabs
TabSub is a JavaScript library for offline PubSub communication between browser tabs using local storage. It allows message sharing on the same domain and is open-source under the MIT license.
Read original articleTabSub is a JavaScript library that facilitates offline PubSub communication between browser tabs using local storage, eliminating the need for a server. It allows messages to be shared across tabs on the same domain, leveraging the browser's built-in local storage. Users can test its functionality through examples, such as synchronizing audio playback between tabs. While the library appears to handle multiple concurrent writes effectively, there is no guarantee of performance under heavy load, and users are advised to proceed at their own risk. TabSub is open-source and available on GitHub under the MIT license. It is noted that the BroadcastChannel API offers similar functionality. The library provides functions for publishing messages, subscribing to topics, and retrieving the current state of a topic.
- TabSub enables offline PubSub communication between browser tabs using local storage.
- It is designed for use on the same domain due to browser security measures.
- The library is open-source and licensed under MIT, available on GitHub.
- Users can publish messages, subscribe to topics, and check the current state of topics.
- The BroadcastChannel API offers similar capabilities for inter-tab communication.
Related
Exploring the Broadcast Channel API for cross-tab communication
The Broadcast Channel API enhances web communication across browser contexts, enabling data synchronization without server involvement. Caution is advised for sensitive data due to lack of encryption. Practical applications include real-time collaboration and data synchronization.
BlockQueue: SQLite-powered pub/sub for lean, fast messaging
Block Queue is a lightweight, cost-effective messaging system using a pub/sub mechanism, built on SQLite3 and NutsDB, supporting Turso Database and PostgreSQL, with high performance and open-source availability.
Show HN: OBS Live-streaming with 120ms latency
Broadcast Box is a video broadcasting tool using WebRTC for sub-second latency, supporting multiple streams and peer-to-peer connections. It integrates with OBS and GStreamer, and offers community support.
Show HN: I Made TabDock–Organize Tabs,Kbar,and Searchbar Commands in the Browser
TabDock is a tab management tool that enhances productivity by transforming browser windows into customizable workspaces, integrating with Google Calendar and Todoist, and offering various pricing plans and robust security.
Ask HN: What bookmarklets do you use?
A user developed a bookmarklet for sending web pages to a private subreddit and shared a tool called "kill-sticky" that removes fixed elements from pages, improving browsing experience.
- Some users compare TabSub to the `BroadcastChannel` API, suggesting it serves a similar purpose.
- Concerns are raised about potential security vulnerabilities related to local storage access control.
- Users share personal experiences with implementing similar PubSub systems, highlighting challenges and solutions.
- There is interest in the simplicity of the code and its potential applications in various projects.
- Some comments reference related technologies and past implementations, indicating a broader context of discussion around PubSub mechanisms.
https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_C...
subscribe(topic, callback) {
if (this.listeners[topic] == undefined) {
// Not yet any listener for this topic
this.listeners[topic] = [];
window.addEventListener('storage', (e) => {
const dataKey = topic + "_data";
if (e.key === dataKey) {
const data = JSON.parse(e.newValue)[0];
this.listeners[topic].forEach((v, k) => {
v(data);
});
}
}, false);
}
this.listeners[topic].push(callback)
}
This installs a handler for every single topic, and every time a message is published, the handlers for all topics are called, even though at most one is interested in the change. A more efficient implementation would install a single handler, e.g. (untested): window.addEventListener('storage', (e) => {
if (e.key.endsWith('_data')) {
const topic = e.key.substring(0, e.key.length - 5);
const data = JSON.parse(e.newValue)[0];
this.listeners[topic]?.forEach(v => v(data));
}
}, false);
Negotiating the communication between tabs was by far the hardest part. In the end I ended up using local storage for signaling to establish a dedicated messsageport channel.
It was such a fight to make something that re-established the connection when either page reloaded.
There are still some connection issues that I haven't been able to resolve. It seems some browsers on some systems reject messages between tabs if they were loaded hours apart.
It might be worth benchmarking a pure local storage fallback, but I'm guessing it would suffer with high traffic.
A generalised implementation that allowed switching multiple paint programs and multiple ComfyUi pages would be ideal. A PubSub might be the way to go.
There's also the issue of other parts of the app also using local storage. Need to not step on toes.
Show HN: JavaScript PubSub in 163 Bytes (31.03.2025)
How does the browser handle access control to the local storage, especially offline when they aren't loaded from the same site?
[Yes, I really don't know. Yes, I'm asking. Not everyone is a web dev.]
https://github.com/Qbix/Platform/blob/main/platform/plugins/...
It had the concept of a “main frame” that they would route all requests to the server through.
I remember now — I did it not so much for tabs as for our solution of having tons of little iframes on a page: https://qbix.com/ecosystem
Related
Exploring the Broadcast Channel API for cross-tab communication
The Broadcast Channel API enhances web communication across browser contexts, enabling data synchronization without server involvement. Caution is advised for sensitive data due to lack of encryption. Practical applications include real-time collaboration and data synchronization.
BlockQueue: SQLite-powered pub/sub for lean, fast messaging
Block Queue is a lightweight, cost-effective messaging system using a pub/sub mechanism, built on SQLite3 and NutsDB, supporting Turso Database and PostgreSQL, with high performance and open-source availability.
Show HN: OBS Live-streaming with 120ms latency
Broadcast Box is a video broadcasting tool using WebRTC for sub-second latency, supporting multiple streams and peer-to-peer connections. It integrates with OBS and GStreamer, and offers community support.
Show HN: I Made TabDock–Organize Tabs,Kbar,and Searchbar Commands in the Browser
TabDock is a tab management tool that enhances productivity by transforming browser windows into customizable workspaces, integrating with Google Calendar and Todoist, and offering various pricing plans and robust security.
Ask HN: What bookmarklets do you use?
A user developed a bookmarklet for sending web pages to a private subreddit and shared a tool called "kill-sticky" that removes fixed elements from pages, improving browsing experience.