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

@deliverart/epos

v0.1.1

Published

Transport-neutral Epson ePOS printing primitives

Readme

@deliverart/epos

Transport-neutral primitives for browser-to-printer thermal printing.

The root export contains the immutable EposDocument, builder, PrintClient, typed results, telemetry events, and in-memory queue. Browser-only raster, preview, and Web Locks helpers are exposed from @deliverart/epos/browser. The official Epson browser SDK adapter is exposed from @deliverart/epos/transports/epson-sdk and receives the Epson namespace as a dependency; this package does not redistribute Epson's vendor runtime.

Operational failures are returned as PrintResult values. A timeout after send() produces status: "unknown" and is never retried automatically, because the printer may already have printed the receipt.

The browser canvas preview mirrors Epson's independent text axes: textSize(1, 2) produces tall text at normal character width, textSize(2, 1) doubles only width, and textSize(2, 2) doubles both dimensions. Supply width, printableWidth, and columns from the selected receipt profile to use physical 203 dpi paper geometry. Normal Font A text uses a 24-dot cell with a 30-dot line advance; double-height text occupies 48 dots without adding artificial leading. A trailing newline terminates the current line without creating an additional blank row.

import { createEposDocument, PrintClient } from "@deliverart/epos";
import { createBrowserPrintLock } from "@deliverart/epos/browser";
import { EpsonSdkTransport } from "@deliverart/epos/transports/epson-sdk";

const document = createEposDocument()
  .align("center")
  .textStyle({ bold: true })
  .text("Order 42\n")
  .feed(2)
  .cut()
  .build();

const transport = new EpsonSdkTransport({ sdk: window.epson });
const client = new PrintClient(transport, {
  crossContextLock: createBrowserPrintLock(),
});

const result = await client.print({
  id: crypto.randomUUID(),
  target: {
    host: "192.168.1.50",
    port: 8043,
    tls: true,
    deviceId: "local_printer",
  },
  document,
});