Yuku is a high-performance JavaScript and TypeScript compiler and toolchain written in Zig. Spec-compliant, zero dependencies, fast by design.
Visit yuku.fyi for the full documentation, guides, and API reference.
npm install yuku-parserimport { parse } from "yuku-parser";
const { program, comments, diagnostics } = parse("const x = 1 + 2;");zig fetch --save git+https://github.com/yuku-toolchain/yuku.gitvar tree = try parser.parse(allocator, "const x = 5;", .{});
defer tree.deinit();Read the parser documentation →
Yuku prioritizes correctness while delivering top-tier speed and efficiency.
- Native benchmark (Zig/Rust) - competitive with Oxc on raw parsing speed
- npm benchmark - 3-5x faster than alternatives
See CONTRIBUTING.md for setup, testing, and playground instructions.
Yuku is free and open-source software licensed under the MIT License.