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

burnmark-cli

v0.2.0

Published

Command-line interface for the burnmark label design engine — render, print, validate, CSV batch, sheet export

Readme

burnmark-cli

Command-line interface for the burnmark label design engine. Render .label files, drive the full template + CSV batch + multi-colour flattening pipeline, send bitmaps to supported thermal printers.

Install

pnpm add -g burnmark-cli
# or via npx without install
npx burnmark-cli <command>

Drivers are optional peer dependencies. Install only the ones you need:

pnpm add @thermal-label/brother-ql-node
pnpm add @thermal-label/labelwriter-node
pnpm add @thermal-label/labelmanager-node

The CLI auto-discovers drivers at runtime.

Commands

| Command | Description | | ---------------------------------------------------------------------------------- | -------------------------------- | | burnmark render --template <file> --output <file> | Render to PNG or PDF | | burnmark render --template <file> --csv <file> --output labels.pdf | Batch render CSV to PDF | | burnmark render --template <file> --sheet <code> --csv <file> --output sheet.pdf | Sticker sheet export | | burnmark print --template <file> --printer <url> | Render and send to printer | | burnmark print --template <file> --csv <file> --printer <url> | Batch print | | burnmark validate --template <file> --csv <file> | Check variables and barcode data | | burnmark list-printers | Show installed driver packages | | burnmark list-sheets | Show built-in sheet templates |

Flags

--template <path>          .label file
--csv <path>               CSV for batch mode
--var key=value            Single variable (repeatable)
--printer usb|tcp://<ip>   Transport URL (auto-detects printer family)
--density light|normal|dark
--delay <ms>               Delay between labels in batch (default 500)
--dry-run                  Render only, do not print
--output <path>            Output file (PNG, PDF)
--sheet <code>             Sheet template code for sticker sheet export
--rows <range>             e.g. 1-50 or 1,3,7 for partial batch

Examples

burnmark render --template badge.label --var name="Piet" --output badge.png
burnmark render --template cards.label --csv addresses.csv --output cards.pdf
burnmark render --template product.label --sheet avery-l7160 --csv sku.csv --output sheet.pdf
burnmark validate --template invoice.label --csv orders.csv

License

MIT © Mannes Brak