> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pdfdyno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Welcome to PDFDyno - The fastest serverless PDF generation API.

## Why PDFDyno?

Generating PDFs in modern serverless environments (like Vercel, AWS Lambda, or Netlify) is notoriously painful. Traditional solutions rely on **Puppeteer** and Headless Chrome, which brings massive problems:

* **Cold Starts:** Downloading and booting a 170MB browser binary takes up to 10 seconds.
* **Memory Leaks:** Chrome frequently exceeds the strict RAM limits of serverless functions, causing hard crashes.
* **Data Privacy Risks:** Many APIs store your generated PDFs on their servers, violating GDPR policies.

**PDFDyno solves this.**

Instead of a heavy browser engine, PDFDyno runs on [Typst](https://typst.app/), a lightning-fast, Rust-based typesetting system.

<CardGroup cols={2}>
  <Card title="Blazing Fast" icon="bolt">
    Compile complex documents in under 50 milliseconds. (Compare that to 50ms vs. 10s cold start with Puppeteer).
  </Card>

  <Card title="Zero Memory Crashes" icon="memory" color="#7c3aed">
    Rust guarantees memory safety. Your functions will never crash from PDF generation again.
  </Card>

  <Card title="Zero Data Retention" icon="shield-check" color="#7c3aed">
    We process your data in memory and delete it instantly. No S3 buckets, 100% GDPR compliant.
  </Card>

  <Card title="Developer Experience" icon="code" color="#7c3aed">
    A clean REST API. Just send JSON and your template. No messy UI builders.
  </Card>
</CardGroup>

## Ready to build?

Dive into our [Quickstart](/quickstart) to generate your first PDF in under 2 minutes.
