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-maker

v0.1.0

Published

Embeddable <zine-maker> web component: point it at your site's feed (WP REST or RSS/Atom), visitors select posts and download a print-ready zine booklet. Fully client-side; single-file bundle of @junglo/zine-pdf + @junglo/impose.

Readme

@junglo/zine-maker

<zine-maker> — drop one tag into any website and visitors can turn its posts into a print-ready zine booklet. Fully client-side: feed → select posts → typeset (@junglo/zine-pdf) → impose (@junglo/impose) → download. No server, no accounts, no tracking.

<script type="module" src="https://cdn.example.com/zine-maker.js"></script>
<zine-maker feed="/wp-json/wp/v2/posts" zine-title="MY ZINE"></zine-maker>

Single ES-module bundle (~223 kB gzip, pdf-lib included), framework-agnostic custom element (Svelte 5 inside, invisible outside), Shadow DOM styles themable via CSS custom properties.

Attributes

| Attribute | Default | Notes | |---|---|---| | feed | — | WP REST endpoint or RSS/Atom URL — auto-detected from the response | | zine-title / subtitle | — | title page (omit for none) | | page-size | A5 | A5 A6 half-letter | | sheet | A4 | output sheet for the booklet | | pages-per-side | 2 | 2 4 8 16 | | booklet | true | false downloads the flat PDF instead | | proxy | — | CORS proxy prefix for cross-origin demos |

Theming: --zm_accent, --zm_bg, --zm_ink, --zm_border_color, --zm_radius, --zm_font_family.

Feeds

  • WP REST (preferred): /wp-json/wp/v2/posts — full content; _embed and per_page=50 are added automatically.
  • RSS/Atom: parsed with DOMParser. Excerpt-only entries get a warning badge and start unselected (a zine of teasers is a sad zine).
  • Adapter interface is exported (fetchFeed) for custom sources.

CORS, honestly

The component is designed to live on the same site as the feed — the primary use case, zero CORS. For cross-origin embeds, supply a proxy you host. Cross-origin images inside posts render as labeled placeholder frames for now (raster embedding is the next milestone).

Develop

bun run dev    # demo page on a local WP-style feed.json (same-origin)
bun run build  # dist/zine-maker.js — the CDN artifact
bun test       # feed adapters + a happy-dom mount test of the built bundle

License

MIT © junglostore