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

@ideadesignmedia/convert-pdf-md

v1.0.0

Published

Tiny TypeScript CLI to convert PDF <-> Markdown (basic, lightweight).

Readme

@ideadesignmedia/convert-pdf-md

A tiny TypeScript CLI that converts Markdown <-> PDF with zero browser/runtime baggage. It includes a rich renderer/extractor for best-effort formatting plus a lean core fallback for quick text-only conversion.

Features

  • Autodetects input (.md, .markdown, .pdf) and infers output paths.
  • CLI supports --out, --stdout, --force, and --engine to swap between rich/core modes.
  • Markdown -> PDF powered by pdfkit (headings, lists, code fences, blockquotes, tables, basic image handling).
  • PDF -> Markdown powered by pdfjs-dist with heuristics (headings from font size, bold/italic, bullets, links, placeholders for images).
  • Ships compiled CommonJS (dist/) only; .npmignore keeps sources and tooling out of the package.
  • Tooling: ESLint, Prettier, Vitest with end-to-end style tests against the built bundle.

WARNING: PDF -> Markdown uses text extraction and heuristics. Layout, custom fonts, and complex graphics cannot be fully preserved.

Install (local dev)

yarn install
yarn build

Node.js 18+ is required.

CLI usage

Once published:

npx @ideadesignmedia/convert-pdf-md <input> [--out path] [--stdout] [--force] [--engine rich|core]

Local development (after yarn build):

node dist/cli.js sample/sample.md -o sample/out.pdf
node dist/cli.js sample/sample.pdf -o sample/out.md

Engines

  • rich (default)
    • Markdown -> PDF: styled output via pdfkit (bold/italic, headings, numbered/bullet lists, code blocks with shading, blockquotes, tables, links, image embedding).
    • PDF -> Markdown: structure-aware extraction using pdfjs-dist (font-size based heading detection, bold/italic, bullet inference, link recovery, image placeholders).
  • core
    • Markdown -> PDF: same renderer as rich but without image lookups.
    • PDF -> Markdown: quick text extraction via pdfjs-dist without layout heuristics.

Switch engines on demand:

npx @ideadesignmedia/convert-pdf-md input.pdf --engine core
npx @ideadesignmedia/convert-pdf-md input.md --engine rich

Programmatic usage

import {
  convertFile,
  convertMarkdownToPdf,
  convertPdfToMarkdown,
  mdToPdf,
  pdfToMd,
} from '@ideadesignmedia/convert-pdf-md';

// Auto-detect by extension / magic
await convertFile('path/to/input.md');
await convertFile('path/to/input.pdf', { out: 'output.md', engine: 'core' });

// Direct helpers
const pdfBuffer = await convertMarkdownToPdf('# Hello', { engine: 'rich' });
const markdown = await convertPdfToMarkdown(pdfBuffer);
await mdToPdf('input.md', 'output.pdf', { margin: 48 });
await pdfToMd('input.pdf', 'output.md');

Repository

https://github.com/ideadesignmedia/convert-pdf-md.git

Development workflow

yarn lint
yarn build
yarn test

Vitest runs against the compiled output in dist/ to mirror the published package.

License

MIT � Idea Design Media