npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@r4ai/typst-ast-node

v0.3.0

Published

A WebAssembly library that parses [Typst](https://typst.app/) source code and returns its CST/AST as a JSON-serializable object. Built with Rust and [`typst-syntax`](https://crates.io/crates/typst-syntax), distributed as npm packages via `wasm-pack`.

Readme

typst-ast

A WebAssembly library that parses Typst source code and returns its CST/AST as a JSON-serializable object. Built with Rust and typst-syntax, distributed as npm packages via wasm-pack.

Packages

| Package | Target | | ---------------------------------------------------------------------------- | ------------- | | @r4ai/typst-ast-web | Web (ESM, Browser) | | @r4ai/typst-ast-node | Node.js |

Usage

Browser

import init, { parse, parseAst } from "@r4ai/typst-ast-web";

await init();

// CST (Concrete Syntax Tree)
const cst = parse("= Hello\n\nThis is *typst*.", { mode: "markup" });
console.log(cst);
// {
//   root: { kind: "Markup", range: [0, 25], children: [...] },
//   errors: []
// }

// AST (Abstract Syntax Tree)
const ast = parseAst("= Hello\n\nThis is *typst*.", { mode: "markup" });
console.log(ast);
// {
//   root: [
//     { kind: "heading", ... },
//     { kind: "parbreak", ... },
//     ...
//   ],
//   errors: []
// }

Node.js

import { parse, parseAst } from "@r4ai/typst-ast-node";

const cst = parse("#let x = 1 + 2", { mode: "code" });
const ast = parseAst("#let x = 1 + 2", { mode: "code" });

API

Both functions accept the same parameters:

  • text: string — Typst source code to parse
  • options.mode?: "markup" | "code" | "math" — Parse mode (default: "markup")

parse(text, options?)

Returns the CST (Concrete Syntax Tree) — a lossless syntax tree that preserves all tokens including whitespace and punctuation.

interface ParseResult {
  root: SyntaxNode;
  errors: ParseError[];
}

interface SyntaxNode {
  kind: string;
  range: [number, number];
  text?: string;
  children: SyntaxNode[];
}

parseAst(text, options?)

Returns the AST (Abstract Syntax Tree) — a typed, semantic tree where each node is a tagged union discriminated by kind. Unlike the CST, the AST extracts semantic information (e.g. heading depth, function callee, binary operator) into dedicated fields.

interface ParseAstResult {
  root: AstExpr[];
  errors: ParseError[];
}

// AstExpr is a discriminated union of 59 node types.
// Examples:
type AstExpr =
  | { kind: "text"; range: [number, number] | null; text: string }
  | { kind: "heading"; range: [number, number] | null; depth: number; body: AstExpr[] }
  | { kind: "strong"; range: [number, number] | null; body: AstExpr[] }
  | { kind: "funcCall"; range: [number, number] | null; callee: AstExpr; args: AstArg[] }
  | { kind: "binary"; range: [number, number] | null; op: AstBinOp; lhs: AstExpr; rhs: AstExpr }
  | // ... and 54 more variants

See src/types.ts for the full type definitions.

Development

Prerequisites

  • Rust (stable) with wasm32-unknown-unknown target
  • Node.js 24
  • pnpm 10
  • wasm-pack

Commands

# Install Node.js and pnpm via mise
mise install

# Install JS dependencies
pnpm install

# Build WASM packages (outputs to dist/web and dist/node)
pnpm run build:lib

# Lint
cargo fmt --check
cargo clippy -- -D warnings
pnpm run check

Release

# Bump version and create a release commit + tag
bash scripts/release.sh 1.2.3

Examples

React app

A React-based example app is located at examples/app.

cd examples/app
pnpm install
pnpm dev

License

MIT