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

@ralfstx/pdf-core

v0.2.0

Published

Library for creating PDF documents.

Readme

PDF Core

Building blocks for creating PDF documents in TypeScript/JavaScript.

No native dependencies — works in any Node.js environment.

Installation

npm install @ralfstx/pdf-core

Quick Start

import { writeFile } from 'node:fs/promises';
import { PDFDocument, PDFPage, PDFStandardFont } from '@ralfstx/pdf-core';

// Create a font
const font = new PDFStandardFont('Helvetica');

// Create an A4 page and add text
const page = new PDFPage(595.28, 841.89);
page.contentStream
  .beginText()
  .setFontAndSize(font, 24)
  .moveTextPosition(50, page.height - 70)
  .showText('Hello, PDF!')
  .endText();

// Build the document and write to file
const doc = new PDFDocument();
doc.addPage(page);
await writeFile('output.pdf', doc.write());

Features

  • Text — Standard PDF fonts and embedded TrueType fonts with OpenType shaping (ligatures, kerning)
  • Images — JPEG and PNG embedding, including PNG transparency
  • Graphics — Lines, rectangles, Bézier curves, fill/stroke, clipping paths
  • Colors — RGB, grayscale, and CMYK color spaces
  • Graphics state — Opacity, blend modes, line styles, transformations
  • Document metadata — Title, author, dates, and XMP metadata with custom fragments
  • File attachments — Embed arbitrary files in the PDF
  • Navigation — Clickable links and named destinations
  • Compression — Deflate compression, object streams, and cross-reference streams

Usage

Embedded Fonts

Use PDFEmbeddedFont to embed a TrueType font with full Unicode support and OpenType text shaping:

import { readFile } from 'node:fs/promises';
import { PDFEmbeddedFont } from '@ralfstx/pdf-core';

const fontData = await readFile('MyFont.ttf');
const font = new PDFEmbeddedFont(fontData);

page.contentStream
  .beginText()
  .setFontAndSize(font, 16)
  .moveTextPosition(50, 750)
  .showPositionedText(font.shapeText('Difficult Waffles', { scriptTag: 'latn' }))
  .endText();

Images

Embed JPEG and PNG images:

import { PDFImage } from '@ralfstx/pdf-core';

const jpeg = PDFImage.fromJpeg(await readFile('photo.jpg'));
const png = PDFImage.fromPng(await readFile('icon.png'));

page.contentStream.drawImageAt(jpeg, 50, 500, 200, 150);
page.contentStream.drawImageAt(png, 50, 300, 100, 100);

Graphics

Draw shapes using the content stream's path operations:

const c = page.contentStream;

c.saveGraphicsState()
  .setLineWidth(2)
  .setStrokeRGB(0.2, 0.4, 0.8)
  .setFillRGB(0.9, 0.95, 1.0)
  .rect(50, 600, 200, 100)
  .fillAndStroke()
  .restoreGraphicsState();

Document Metadata

const doc = new PDFDocument();
doc.setInfo({
  title: 'My Document',
  author: 'Jane Doe',
  creationDate: new Date(),
});

XMP metadata is generated automatically from the Info dictionary. To add custom XMP properties, use addXMPFragment():

doc.addXMPFragment({
  namespaceUri: 'http://ns.adobe.com/pdfx/1.3/',
  prefix: 'pdfx',
  unsafeInnerXML: '<pdfx:Company>Acme Corp</pdfx:Company>',
});

File Attachments

doc.addEmbeddedFile({
  content: new TextEncoder().encode('Hello, World!'),
  fileName: 'note.txt',
  mimeType: 'text/plain',
});

Examples

Runnable examples are in examples/.

scripts/download-fonts.sh
node examples/basic.ts
node examples/showcase.ts

License

MIT

References