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

@usfm-tools/ptxprint-cli

v0.2.0

Published

CLI for @usfm-tools/ptxprint-driver: convert USFM files to PDF via PTXprint

Readme

@usfm-tools/ptxprint-cli

Zero-dependency Node.js CLI that converts USFM files to PDF via @usfm-tools/ptxprint-driver (which wraps the PTXprint CLI).

Every RenderOptions field in the driver is exposed as a flag. The --cfg-set and --cfg-file escapes give access to the full raw ptxprint.cfg surface.

Prerequisites

  • Node.js ≥ 18
  • PTXprint installed and on PATH (or set PTXPRINT_BIN / pass --ptxprint-path)

Install (monorepo)

# from usfm-ast root
bun install

Usage

# Built-in fixture (no USFM file needed)
node packages/ptxprint-cli/bin/usfm2pdf.mjs --fixture tit

# Your own file
node packages/ptxprint-cli/bin/usfm2pdf.mjs my-book.usfm -o my-book.pdf

# Or if installed globally / via the monorepo bin link
usfm2pdf --fixture jhn --paper-size A5 --columns 2 -o john-a5.pdf

All flags

Run usfm2pdf --help for the full flag reference. Quick summary:

| Category | Flag | ptxprint.cfg key | |---|---|---| | Layout | --paper-size A5 | paper/pagesize + paper/width + paper/height | | | --columns 2 | paper/columns | | | --margins-mm 15 | paper/margins | | | --top-margin-mm 20 | paper/topmargin | | | --bottom-margin-mm 20 | paper/bottommargin | | | --rtl | document/ifrtl | | | --mirror-margins | header/mirrorlayout | | Typography | --font-family "Charis SIL" | document/fontregular (+bold/italic variants) | | | --font-size-pt 11 | paper/fontfactor | | | --line-spacing-pt 14 | paragraph/linespacing | | | --no-justify | paragraph/ifjustify = False | | | --hyphenate | paragraph/ifhyphenate = True | | Page numbers | --page-numbers footer-center | footer/ftrcenter | | | --page-numbers header-outer | header/hdrright + header/mirrorlayout | | | --page-numbers none | (all page-number slots set to -empty-) | | | --start-page-num 3 | document/startpagenum | | | --header-rule-mm 0.4 | paper/rulegap + header/ifrhrule | | Content | --footnotes / --no-footnotes | notes/includefootnotes | | | --cross-refs / --no-cross-refs | notes/includexrefs | | | --section-heads / --no-section-heads | document/sectionheads | | | --chapter-numbers / --no-chapter-numbers | document/ifshowchapternums | | | --verse-numbers / --no-verse-numbers | document/ifshowversenums | | Raw cfg | --cfg-set notes/includefootnotes=True | any key in any section | | | --cfg-file overrides.ini | INI file merged after typed flags |

Multi-book

Pass multiple files, or comma-separate fixture names:

usfm2pdf john.usfm genesis.usfm -o jhn-gen.pdf
usfm2pdf --fixture jhn,tit --paper-size A5 -o jhn-tit.pdf

Debugging

# Keep the scaffold directory and stream the PTXprint log
usfm2pdf --fixture tit --keep-temp --verbose

# Inspect the generated ptxprint.cfg inside the printed scaffold path

Built-in fixtures

| Name | Description | |------|-------------| | tit | Titus (3-chapter Pauline epistle, clean USFM) | | jhn | John chapter 1 (prologue + calling of disciples) |

These are stored in fixtures/ and are clean USFM without alignment markers, ideal for testing rendering features without needing external scripture files.