139 releases (87 breaking)
Uses new Rust 2024
new 0.90.0 | Sep 18, 2025 |
---|---|
0.88.0 | Sep 15, 2025 |
0.79.1 | Jul 31, 2025 |
0.61.2 | Mar 23, 2025 |
0.3.0 | Nov 6, 2023 |
#798 in Programming languages
100,534 downloads per month
Used in 63 crates
(10 directly)
3.5MB
62K
SLoC
Oxc Codegen
High-performance code generation from AST back to JavaScript/TypeScript source code.
Overview
This crate converts AST nodes back into source code strings, supporting JavaScript, TypeScript, and JSX. It's designed for speed and correctness, producing clean, readable output.
Key Features
- Fast code generation: Optimized for performance with minimal allocations
- Source map support: Generate accurate source maps during output
- Configurable formatting: Control whitespace, semicolons, and other formatting options
- Comment preservation: Maintain comments during code generation
- Binary expression optimization: Intelligent parentheses insertion
Architecture
Code Generation Pipeline
- AST Traversal: Walk through AST nodes systematically
- Token Generation: Convert nodes to appropriate tokens/strings
- Formatting: Apply whitespace, indentation, and style rules
- Source Mapping: Track original source positions if enabled
Design Principles
- Correctness: Generated code must be functionally equivalent to original
- Performance: Minimize string allocations and copying
- Readability: Produce clean, well-formatted output
- Fidelity: Preserve semantic meaning and behavior
The codegen is adapted from esbuild's approach, optimized for Rust and oxc's AST structure.
Dependencies
~8.5MB
~148K SLoC