Socket
Socket
Sign inDemoInstall

@akiroz/thalamus

Package Overview
Dependencies
51
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @akiroz/thalamus

An opinionated application messaging framework based on MQTT.


Version published
Maintainers
1
Created

Readme

Source

Thalamus

An opinionated application messaging framework based on MQTT.

Differences from plain MQTT

+ RPC support
+ Server redundancy / load-balancing
- Guaranteed delivery (MQTT QoS 1 / 2)

Messages requiring acknowledgement must use RPC and applications are expected to implement their own retry mechanisms.

API

class Thalamus
  • constructor(serverOptList: MQTT.IClientOptions[])
  • async publish(topic: string, payload: Uint8Array)
  • async subscribe(topic: string, handler: SubHandler)
  • async unsubscribe(topic: string, handler?: SubHandler)
  • async call(topic: string, params: Param = {}, opt = defaultOptions): Promise<Result>
  • async register(topic: string, handler: (param, topic) => Result)

FAQs

Last updated on 07 Jul 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc