🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

pdfnative-react

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pdfnative-react

React renderer for pdfnative — declarative JSX components (<Document>, , <Table>, …) that compile to PDF on-device with zero SaaS round-trips. Live preview, streaming, 22 Unicode scripts. The frontend gateway to the pdfnative ecosystem.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
18
-93.59%
Maintainers
1
Weekly downloads
 
Created
Source

pdfnative-react

npm version License: MIT TypeScript pdfnative

Preview release. 0.1.0 reserves the package name. The declarative React renderer lands in 0.2.0 — follow the repository for progress.

Write PDFs the way you write UIs. pdfnative-react turns declarative JSX into real, on-device PDF documents powered by the zero-dependency pdfnative engine — no SaaS round-trips, your documents never leave the process.

// Coming in 0.2.0
import { Document, Page, Heading, Text, Table, usePdf } from 'pdfnative-react';

function Invoice() {
  return (
    <Document title="Invoice #1024">
      <Page>
        <Heading level={1}>Invoice #1024</Heading>
        <Text>Thank you for your business.</Text>
        <Table
          headers={['Item', 'Qty', 'Total']}
          rows={[['Pro plan', '1', '$49.00']]}
        />
      </Page>
    </Document>
  );
}

The pdfnative ecosystem

PackageUse it for
pdfnativeThe zero-dependency PDF engine — Node, browsers, Workers, Deno, Bun.
pdfnative-reactDeclarative React/JSX components with live preview (this package).
pdfnative-cliRender, sign, inspect, and verify PDFs from the shell.
pdfnative-mcpGenerate PDFs from Claude Desktop, Cursor, Continue, Zed.

License

MIT © 2026 Nizoka — Plika

Keywords

pdf

FAQs

Package last updated on 13 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts