npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@serialpilot/modbus-rtu

v0.1.0

Published

Pure-function Modbus RTU frame encode/decode (CRC-16/Modbus, little-endian). Framing only — pair with @serialpilot/parser-inter-byte-timeout for live streams. Browser-clean — no node:* imports.

Readme

@serialpilot/modbus-rtu

Pure-function Modbus RTU framing only — encode/decode of address + function-code + PDU + CRC-16/Modbus, with the trailing CRC transmitted little-endian per the spec. No node:* imports.

This package deliberately stops at the framing layer. It does not implement function-code semantics, register maps, or master/slave behaviour; modbus-serial owns that and is excellent. Use this package when you want to:

  • Build a custom master/slave on top of a clean codec.
  • Re-frame Modbus RTU over a non-serial transport (e.g. TCP relay, Web Serial, WebSocket gateway).
  • Validate or fuzz wire-level frames.

Install

npm install @serialpilot/modbus-rtu

Use

import { encode, decode, silenceMillisFor } from '@serialpilot/modbus-rtu'

// Build a Read Holding Registers (FC=0x03) request: slave 1, start 0, count 10.
const request = encode({
  address: 1,
  fc: 0x03,
  pdu: new Uint8Array([0x00, 0x00, 0x00, 0x0a]),
})
// → [0x01, 0x03, 0x00, 0x00, 0x00, 0x0A, 0xC5, 0xCD]
//                                          ^^^^^^^^^^ CRC-16/Modbus little-endian

// Decode any RTU frame:
const frame = decode(request)
// → { address: 1, fc: 3, pdu: Uint8Array(4) [0, 0, 0, 10] }

Inter-frame silence helper

Modbus RTU specifies that frames are separated by 3.5 character-times of silence on the line. Computed at the host, that's silenceMillisFor(baudRate) — the same helper your favourite SCADA stack uses internally:

silenceMillisFor(9600)    // ≈ 4.01 ms
silenceMillisFor(19200)   // 1.75 ms (fixed minimum per spec at higher baud)
silenceMillisFor(115200)  // 1.75 ms

Pairing with a stream

For a live stream, frame boundaries are detected by inter-byte silence rather than a delimiter byte. Use the existing @serialpilot/parser-inter-byte-timeout from the main serialpilot toolkit:

import { SerialPilot } from 'serialpilot'
import { InterByteTimeoutParser } from '@serialpilot/parser-inter-byte-timeout'
import { decode, silenceMillisFor } from '@serialpilot/modbus-rtu'

const port = new SerialPilot({ path: '/dev/ttyUSB0', baudRate: 9600 })
const frames = port.pipe(new InterByteTimeoutParser({
  interval: silenceMillisFor(9600),
}))

frames.on('data', (frame: Buffer) => {
  try {
    console.log(decode(frame))
  } catch (err) {
    // ModbusFrameError — bad CRC, bad address, or short frame
  }
})

A first-class companion parser-modbus-rtu package may land in v0.2 once the integration shape settles.

Errors

decode throws ModbusFrameError for malformed input:

| code | meaning | | --------------- | ------------------------------------------------------ | | TOO_SHORT | fewer than 4 bytes (minimum: address + fc + 2-byte CRC). | | BAD_ADDRESS | address byte outside the valid 0..247 range. | | CRC_MISMATCH | computed CRC ≠ received CRC. |

License

MIT.