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

cajupdf

v0.1.0

Published

Turn PDFs into clean markdown + extracted images (macOS)

Readme

cajupdf 🥜

Crack open a PDF, get clean markdown and its pictures.

caju is the cashew — that funny little nut that grows outside its fruit, in plain sight. cajupdf does the same trick to your PDFs: it cracks the shell and hands you the good stuff — readable markdown, plus every embedded image, laid out where you can actually use them.


What it does

Three stages, one command:

  1. Text — pulled with unpdf (PDF.js under the hood). Scanned/image-only PDFs fall back to the macOS Vision framework OCR automatically — no setup, no API keys.
  2. Images / figures / sigils — extracted at full fidelity with Poppler's pdfimages (JPEGs stay JPEGs, PNGs stay PNGs).
  3. Markdown — assembled with YAML front matter (title, author, page & image counts) and one ## Page N section per page, images linked inline.

Requirements

  • macOS — cajupdf leans on the system Vision framework for OCR, so it's macOS-only for now.
  • Node ≥ 22
  • pdfimages (Poppler) — only needed when extracting images: brew install poppler. Skip it entirely with --no-images.

Install

npm i -g cajupdf
# or
pnpm add -g cajupdf

Then:

cajupdf some.pdf

Or run it from a clone:

pnpm install
pnpm build
node dist/cli.js some.pdf

Usage

cajupdf <pdf> [<pdf> ...] [options]

Options:
  --no-images        Skip image extraction (images are extracted by default).
  --url-friendly     Slugify output names to kebab-case (default: verbatim).
  --out-dir <dir>    Where to write outputs (default: current directory).
  -h, --help         Show help.
  -v, --version      Show version.

Pass as many PDFs as you like — each is processed independently, and one bad file won't sink the rest (the run just exits non-zero if any failed).


Output layout

The markdown is <name>.md, and its images sit in a sibling <name>-images/ directory.

Default (verbatim names):

My Book.pdf  →  My Book.md
                My Book-images/
                  img-002-000.jpg
                  ...

Verbatim names can contain spaces, so image links are percent-encoded and angle-bracket-wrapped to stay valid markdown: ![](<My Book-images/img-002-000.jpg>).

--url-friendly (kebab-case):

My Book.pdf  →  my-book.md
                my-book-images/
                  img-002-000.jpg
                  ...

Programmatic API

cajupdf is also a library. The one-call workhorse:

import { extractPdf } from 'cajupdf'

const result = await extractPdf('My Book.pdf', {
  images: true, // extract images (default)
  urlFriendly: false, // keep names verbatim (default)
  outDir: './out', // default: cwd
  onProgress: p => console.log(p.stage, p.current, p.total),
})

// → { mdPath, imageDir, pageCount, imageCount }

Or reach for the individual stages — parsePDF, extractImages, toMarkdown, slugify, resolveOutputNames — all exported with full types.


License

MIT


Built to be cracked open. Mind the shell. 🥜🐘