pdfkit
Installation
SKILL.md
PDFKit
Programmatic PDF generation for Node.js. Streaming architecture — write to files or HTTP responses.
Setup
# Install PDFKit for PDF generation.
npm install pdfkit
npm install -D @types/pdfkit
Basic Document
// src/pdf/basic.ts — Create a simple PDF with text and save to file.
import PDFDocument from "pdfkit";
import fs from "fs";
Related skills