@namahapdf/core
v0.3.0
Published
Headless in-browser PDF engine — parse, render, edit, annotate, sign, redact, fill forms. The core of the NamahaPDF SDK.
Maintainers
Readme
@namahapdf/core
Headless, in-browser PDF engine — parse, render, edit, annotate, sign, redact, and fill forms, fully on-device. The framework-agnostic core of the NamahaPDF SDK.
npm i @namahapdf/coreimport { PDFParser, PageRenderer, configureLicense } from '@namahapdf/core';
// Apply your license key (without one, exports are watermarked + features limited).
configureLicense({ licenseKey: 'YOUR_KEY' });
const parser = new PDFParser(bytes);
const doc = parser.parse();
// …render to a canvas, run edit operations, export.Get a license key at namahapdf.com/sdk. The package is free to download but is watermarked and feature-limited until a valid key is applied.
For a ready-made React editor component, see @namahapdf/react.
