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

tabby-xyzmodem

v1.1.2

Published

XMODEM, YMODEM and ZMODEM file transfer plugin for Tabby terminal

Readme

tabby-xyzmodem

Tabby terminal plugin for serial file transfer with XMODEM, YMODEM, and ZMODEM.

Features

  • Send and receive files through the active Tabby terminal session.
  • XMODEM CRC-16 and YMODEM batch/header transfer for bootloaders.
  • ZMODEM send/receive integration using zmodem.js, including CRC framing, progress, cancellation, and downloaded-file saving.
  • Context-menu commands for every protocol and direction.
  • No second serial connection is opened, so the active COM port remains owned by the terminal tab.

Installation

From Tabby Plugin Manager (recommended)

  1. Go to Tabby Settings -> Plugins.
  2. Switch to the Available tab.
  3. Search for tabby-xyzmodem and click Install.
  4. Restart Tabby.

Manual Installation via NPM

If you prefer to install it manually:

cd "$env:APPDATA\tabby\plugins"
npm install tabby-xyzmodem

(On Linux/macOS, use ~/.config/tabby/plugins or ~/Library/Application Support/tabby/plugins)

Restart Tabby after installation.

Usage

  1. Open a serial connection in Tabby.
  2. For ZMODEM: Start a compatible sender/receiver such as sz or rz on the remote side.
  3. For XMODEM/YMODEM: Place the remote bootloader or system into receive mode (e.g., ymodem_recv or rz -y).
  4. Right-click anywhere in the terminal tab.
  5. Choose the required XMODEM, YMODEM, or ZMODEM action from the context menu.

Protocol notes

  • XMODEM/YMODEM use 128-byte blocks and CRC-16 negotiation.
  • YMODEM sends the filename/size header and the terminating empty header.
  • ZMODEM is binary and sender-driven; terminal text may briefly show the protocol's detection header.
  • None of these protocols provide authentication or encryption. Use them only on trusted serial links.

Development

Requirements: Node.js 18 or newer and a Tabby-compatible Angular/toolchain environment.

npm ci
npm run verify
npm pack --dry-run

npm run verify performs TypeScript checking and a production webpack build. The .npmrc file keeps npm's peer-dependency resolution consistent with the Angular 12/Tabby toolchain.

License

MIT. See LICENSE.