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/driver-esp-flasher

v0.1.0

Published

ESP32/ESP8266 ROM-bootloader flasher for serialpilot — SLIP-framed binary protocol, sync, chip detect, erase, flash with progress, soft reboot.

Readme

@serialpilot/driver-esp-flasher

ESP32 / ESP8266 / ESP32-S3 ROM-bootloader flasher for SerialPilot.

SLIP-framed binary protocol over serial. Drives the DTR/RTS reset dance to enter the bootloader, syncs, detects the chip variant by magic register, optionally erases flash, writes firmware in 1024-byte blocks with 'progress' events, and resets the chip into application mode.

Install

npm install serialpilot @serialpilot/driver-esp-flasher

Quick start

import { readFile } from 'node:fs/promises'
import { SerialPilot } from 'serialpilot'
import { EspFlasher } from '@serialpilot/driver-esp-flasher'

const port = new SerialPilot({ path: '/dev/ttyUSB0', baudRate: 115200 })
const esp = new EspFlasher({ transport: port })

await esp.open()
await esp.enterBootloader()
await esp.sync()
const chip = await esp.chipDetect()
console.log('Chip:', chip.name)

const firmware = await readFile('app.bin')
esp.on('progress', p => process.stdout.write(`\r${p.written}/${p.total} bytes`))

await esp.flash({ offset: 0x10000, data: firmware })
await esp.reset()
await esp.close()

Events

| Event | Payload | Notes | | --- | --- | --- | | 'progress' | {written, total} | After each ACKed FLASH_DATA block | | 'chip' | {name, magic} | After chipDetect() resolves | | 'error' | Error | Inherited from Device; transport errors | | 'parse-error' | {reason, frame} | Malformed inbound frame that didn't pass parseResponse validation | | Inherited | 'open' \| 'close' \| 'state' \| 'data' | From Device |

Limitations (v0.1)

  • Stub-loader stage not implemented. v0.1 talks directly to the ROM bootloader, which is slower than esptool.py's stub but simpler.
  • No flash compression. data passed to flash() is sent as-is.
  • DTR/RTS sequence assumes the standard "Auto Reset" wiring (RTS→EN, DTR→GPIO0). Boards with inverted or non-standard wiring may need a manual entry into bootloader.
  • 115200 baud only. No baud-rate handshake.

License

MIT