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

@junglo/zine-pdf

v0.1.0

Published

Posts → typeset vector PDF zine: htmlToBlocks parsing + template typesetting with pdf-lib. Browser, Bun, Deno, Node. Feeds straight into @junglo/impose for booklet output.

Readme

@junglo/zine-pdf

Posts → typeset vector PDF zine. generate(doc, opts) → Uint8Array, ready to feed into @junglo/impose for a print-ready booklet.

  • Parse: htmlToBlocks turns messy post HTML into typesettable blocks (headings, paragraphs, quotes, lists, images, rules). Scripts, styles and nav are stripped; embeds become link lines; unknown tags salvage their text.
  • Typeset (pure): paginate flows blocks onto pages — greedy wrap, heading keep-with-next, post openers with byline + rule, optional centered title page, page numbers. Width measurement is injected, so the layout core runs without pdf-lib (live page estimates, preview UIs).
  • Render: generate draws everything as vector text with pdf-lib.

Use

import { generate, estimatePages } from "@junglo/zine-pdf";

const doc = {
  title: "MY ZINE",
  subtitle: "issue #1",
  posts: [{ title: "Hello print", author: "me", html: "<p>…post HTML…</p>" }],
};

const pdf = await generate(doc, { pageSize: "A5", template: "serif" });
const pages = await estimatePages(doc); // "5 posts → ~24 pages" live footers

Browser: works as-is (native DOMParser). Bun/Deno/Node: pass a parser —

import { DOMParser } from "linkedom";
const pdf = await generate(doc, { parser: new DOMParser() });

Straight into a booklet:

import { impose } from "@junglo/impose";
const booklet = await impose(await generate(doc), {
  mode: "saddle", sheet: "A4", pagesPerSide: 2, flip: "short-edge",
});

Options

| Option | Values | Notes | |---|---|---| | template | serif | classic Times-family layout (more templates planned) | | pageSize | A5 (default), A6, half-letter | styles scale to the page | | parser | DOMParser-compatible | required outside the browser |

Current limits (M1, honest)

  • Built-in fonts only (WinAnsi): Latin-1 + typographic punctuation render fine; emoji and non-Latin scripts degrade to ?. Bundled Unicode fonts via @pdf-lib/fontkit are the planned fix.
  • Images render as labeled placeholder frames — raster embedding (fetch → downscale → JPEG) lands with the <zine-maker> component work, where the browser canvas lives.
  • Inline bold/italic inside paragraphs is flattened to the block style.
  • One template so far.

License

MIT © junglostore