u8-mqtt-packet

0.4.1 • Public • Published

u8-mqtt-packet

MQTT packet encoder and decoder using Uint8Array in ES Modules (ESM). Zero dependencies. Tree-shaking friendly. Suited for use in modern ES6 environments: the Browser, NodeJS, and Deno.

Consider u8-mqtt for QOS-0 and QOS-1 MQTT client communications.

Docs

Targeting MQTT-3.1.1 (v4) and MQTT-5.0.0 (v5) compatibility.

Use

import {mqtt_session_v4} from 'u8-mqtt-packet'
const [mqtt_decode, mqtt_encode] = mqtt_session_v4()

const u8_pkt = mqtt_encode('connect', {
  keep_alive: 60,
  flags: 0,
  client_id: 'readme',
})

console.log(u8_pkt)

/*
  Uint8Array(20) [16,18,0,4,77,81,84,84,4,0,0,60,0,6,114,101,97,100,109,101]
*/


console.log(mqtt_decode(u8_pkt))

/*
  [
    {
      b0: 16,
      mqtt_level: 4,
      flags: [Number (_connect_flags_): 0],
      keep_alive: 60,
      client_id: 'readme'
    }
  ]
*/

Module size

module brotli minified
u8-mqtt-packet/esm/codec_v4_lean.min.js 1700 B 4886 B
u8-mqtt-packet/esm/codec_v5_lean.min.js 2388 B 7010 B
u8-mqtt-packet/esm/index.min.js 4144 B 14053 B

automated sizing report

MQTT Client sizes

minifeid (x) Project Measurement
187.0KB 12x MQTT.js curl -sL https://cdn.jsdelivr.net/npm/mqtt@4.0.1/dist/mqtt.min.js | wc -c
32.3KB 2x paho curl -sL https://cdn.jsdelivr.net/npm/paho-mqtt@1.1.0/paho-mqtt.min.js | wc -c
19.9KB 1.3x u8-mqtt v5 cat ./u8-mqtt/esm/web/v5.min.js | wc -c
15.5KB 1x u8-mqtt v4 cat ./u8-mqtt/esm/web/v4.min.js | wc -c

Prior Art

The u8-mqtt-packet project was inspired by mqtt-packet written for NodeJS. The codecs of that project are written with a NodeJS ecosystem in mind: Buffer, EventEmitter, Streams.

License

BSD-2-Clause

Readme

Keywords

none

Package Sidebar

Install

npm i u8-mqtt-packet

Weekly Downloads

2

Version

0.4.1

License

BSD-2-Clause

Unpacked Size

553 kB

Total Files

54

Last publish

Collaborators

  • shanewholloway