Guide

Choose a parsing or writing task.

Start with the parser or writer boundary that your application controls. Each guide keeps storage, profiles, publication, and failure behavior explicit.

Task guides

6. Check the boundary

Review implemented support, maintained evidence, known omissions, public source availability, and Alire index status.

Check current support →

Reading path

Choose how much data to retain.

The parser has no DOM or collector. A consumer can handle each event immediately, copy selected payloads into its own storage, or build a provisional candidate until the parser reports complete-document acceptance.

OBSERVE

Read and discard

Use Drain to inspect a large stream with a bounded parser and caller-owned event array.

SELECT

Retain a few values

Copy only the text, bytes, numbers, or tags that the application needs.

BUILD

Commit after acceptance

Keep a private candidate provisional until the parser reports complete-document acceptance.