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

tikzify

v0.0.42

Published

Generate beautiful PDF books with emoji SVG overlays and custom backgrounds using XeLaTeX and TikZ.

Readme

tikzsvg

Generate beautiful PDF books with emoji SVG overlays and custom backgrounds using XeLaTeX and TikZ.

Features

  • 📚 Create multi-page PDF books from JSON input
  • 🎨 Gradient backgrounds with customizable colors
  • 🖼️ Embed images with custom shaped clipping paths
  • ✨ SVG emoji overlays with precise positioning, scaling, and rotation
  • 🌐 RTL (right-to-left) and LTR (left-to-right) text support
  • 🔤 Hebrew text support with Fredoka-Bold font
  • 📄 A5 paper format with page numbering

Prerequisites

  • Bun runtime
  • XeLaTeX (from TeX Live or similar distribution)
  • Fredoka-Bold.ttf font file in the project root

Installation

bun install

Usage

Server Mode

Start the HTTP server:

bun --hot src/server.ts

Send a POST request with JSON book data:

curl http://localhost:3000/ \
  -H "Content-Type: application/json" \
  -d @book.json \
  -o output.pdf

Book JSON Format

{
  "dir": "rtl",
  "pages": [
    {
      "gradient": ["#8B4513", "#FFD1E0"],
      "textBg": "#FFF3E6",
      "text": [
        "Line 1 of text",
        "Line 2 of text"
      ],
      "emojis": {
        "text": [
          {
            "x": 10,
            "y": 20,
            "scale": 1.8,
            "rotate": -15,
            "emoji": "🍄"
          }
        ],
        "image": [
          {
            "x": -170,
            "y": -130,
            "scale": 1.8,
            "rotate": -15,
            "emoji": "🌺"
          }
        ]
      },
      "jpgBase64": "base64-encoded-image-data"
    }
  ]
}

API Reference

Book Schema

  • dir: Text direction ("rtl" or "ltr")
  • pages: Array of page objects

Page Schema

  • gradient: Array of two hex colors for background gradient
  • textBg: Hex color for text background overlay
  • text: Array of text lines to display
  • emojis.text: Emoji overlays for text pages
  • emojis.image: Emoji overlays for image pages
  • jpgBase64: Base64-encoded JPEG image (max 256KB)

Emoji Schema

  • x, y: Position coordinates in points
  • scale: Scale factor
  • rotate: Rotation angle in degrees
  • emoji: Unicode emoji character

How It Works

  1. Receives book JSON via HTTP POST
  2. Parses and validates input using Zod schemas
  3. Converts emoji to SVG paths using pre-defined emoji map
  4. Generates XeLaTeX document with TikZ graphics
  5. Runs XeLaTeX twice to resolve coordinate references
  6. Returns compiled PDF

Development

The project uses:

  • Bun for runtime and package management
  • TypeScript for type safety
  • Zod for schema validation
  • SAX for SVG parsing
  • p-queue for sequential PDF generation

License

MIT