yuku-codegen
v0.6.1
Published
High-performance JavaScript/TypeScript code generator written in Zig
Maintainers
Readme
yuku-codegen
A high-performance JavaScript and TypeScript code generator written in Zig, powered by Yuku.
Renders an ESTree / TypeScript-ESTree AST back to source code, with optional Source Map V3 output.
Install
npm install yuku-codegenUsage
import { parse } from "yuku-parser";
import { print } from "yuku-codegen";
const { program } = parse("const x = 1 + 2;");
const { code } = print(program);
console.log(code); // "const x = 1 + 2;"API
All three entry points take the Program node off the ParseResult returned by yuku-parser and share the same options and result shape.
| Function | Behavior |
| -------- | ----------------------------------------------------------------------------------------------------- |
| print | Renders verbatim, preserving TypeScript syntax. |
| strip | Drops type-only syntax and emits plain JavaScript. See TypeScript stripping. |
| minify | Applies size-reducing rewrites at print time. See Minification. |
All return a CodegenResult:
interface CodegenResult {
code: string;
errors: Diagnostic[];
map: SourceMap | null;
}errors is empty on a clean run. map is non-null only when sourceMaps is enabled.
Options
const out = print(program, {
format: "pretty",
indent: 2,
quotes: "preserve",
comments: "some",
sourceMaps: { source },
});| Option | Type | Default | Description |
| ------------ | ---------------------------------------- | ---------- | ---------------------------------------------------------------------------- |
| format | "pretty" \| "compact" | "pretty" | Whitespace mode. "compact" emits only the separators the grammar requires. |
| indent | number | 2 | Spaces per indentation level. Applies in pretty mode only. |
| quotes | "preserve" \| "double" \| "single" | "preserve" | Quote style for string literals. "preserve" keeps each literal's source quote style (re-escaping the content); "double" / "single" force one. |
| comments | boolean \| "some" \| "line" \| "block" | "some" | Comment passthrough filter. See Comments. |
| sourceMaps | SourceMapOptions | undefined | Pass an object to emit a Source Map V3. Its source is required, the rest of the metadata is optional. See Source maps. |
Source maps
Pass a SourceMapOptions object to emit a Source Map V3. Its source field is required: feed it the original source text (this is what maps generated positions back to the source). Without it, no map is produced and map is null. The remaining fields (file, sources, sourcesContent, sourceRoot) are optional metadata.
import { parse } from "yuku-parser";
import { print } from "yuku-codegen";
const source = `const greet = (name) => "Hello, " + name;`;
const { program } = parse(source);
const { code, map } = print(program, {
sourceMaps: {
source,
file: "out.js",
sourceFileName: "in.js",
sourcesContent: source,
},
});
await Bun.write("out.js", `${code}\n//# sourceMappingURL=out.js.map`);
await Bun.write("out.js.map", JSON.stringify(map));SourceMapOptions
| Field | Type | Description |
| ---------------- | ---------- | --------------------------------------------------------------------------------- |
| source | string | Required. The original source text, used to map positions to the source. |
| file | string | Output filename, embedded as the map's file. |
| sourceFileName | string | Source filename, embedded as the single entry of sources. |
| sourceRoot | string | Prefix embedded as sourceRoot. |
| sourcesContent | string | When set, embedded as the single entry of the map's sourcesContent. Omit to skip. |
Output shape
map is a Source Map V3 object, ready to serialize with JSON.stringify:
interface SourceMap {
version: 3;
file: string | null;
sourceRoot: string | null;
sources: string[];
sourcesContent: (string | null)[] | null;
names: string[];
mappings: string;
}Columns are 0-indexed UTF-16 code units, matching Chrome DevTools and consumer-side libraries like @jridgewell/trace-mapping and source-map.
TypeScript stripping
strip rewrites the AST as plain JavaScript.
import { parse } from "yuku-parser";
import { strip } from "yuku-codegen";
const { program } = parse(`const x: number = 1;`, { lang: "ts" });
console.log(strip(program).code); // "const x = 1;"Type annotations, type aliases, interfaces, and other type-only constructs are dropped. Constructs that have no clean JavaScript equivalent (enum, namespace, import = require(), export =) are reported in errors and elided. The output is always syntactically valid JavaScript.
Comments
Comments live on the AST nodes they were attached to during parsing. To preserve them, parse with attachComments: true:
const { program } = parse(source, { attachComments: true });
print(program).code;The comments option then selects which attached comments are emitted. The default is "some", which matches the bundler convention of keeping legal banners, JSDoc, and tree-shaking annotations while dropping plain noise.
| Value | Behavior |
| --------- | --------------------------------------------------------------- |
| "some" | Emit legal headers, JSDoc, and @/# annotations. (default) |
| true | Emit every comment. |
| false | Drop every comment. |
| "line" | Emit // ... only. |
| "block" | Emit /* ... */ only. |
const { program } = parse(`// hello\nconst x = 1;`, { attachComments: true });
print(program, { comments: true }).code;
// "// hello\nconst x = 1;"Because comments are attached to nodes, they survive AST transforms: move or replace a node and its comments come with it. See the yuku-parser comments docs for the comment options.
Minification
minify applies size-reducing rewrites at print time:
trueandfalserewrite to!0and!1.undefinedrewrites tovoid 0(in expression position).Infinityrewrites to1/0.- Numeric literals shorten to their shortest form (
1000000becomes1e6,0.5becomes.5). obj["foo"]rewrites toobj.foowhen the key is a valid identifier.{ "foo": x }rewrites to{ foo: x }when safe.
Combine with format: "compact" for full minification:
import { minify } from "yuku-codegen";
const { code } = minify(program, { format: "compact" });License
MIT
