esgen
v0.2.11
Published
ECMAScript generator
Downloads
7
Readme
ECMAScript Generator
Supported features:
- Pretty-printed code generation.
- Naming conflicts resolution.
- API for generating variables, functions, classes, modules, etc.
- Generated code evaluation.
Choose what you need. If strings concatenation is just enough - that's definitely the way to go.
See API Documentation for the details.
Simple Usage
import { esGenerate } from 'esgen';
const text = await esGenerate(code => {
code
.write(`function print(text) {`)
.indent(`console.log(text);`)
.write('}')
.write(`const greeting = 'Hello, World!';`)
.write(`print(greeting);`);
});
The following code will be emitted:
function print(text) {
console.log(text);
}
const greeting = 'Hello, World!';
print(greeting);
Symbols And Functions
Symbols used to avoid naming conflicts. If the same name requested for two different symbols, one of them will be automatically renamed.
The example above can utilize symbols:
import { EsFunction, EsVarSymbol, esGenerate, esStringLiteral, esline } from 'esgen';
// Create function.
const print = new EsFunction(
'print',
{
text: {}, // Require argument called `text`.
},
{
declare: {
at: 'bundle', // Automatically declare function at top level once referred.
body: fn => code => {
code.write(
// Place on one line.
esline`console.log(${fn.args.text /* Refer declared argument symbol */});`,
);
},
},
},
);
const text = await esGenerate(code => {
// Create variable symbol.
const greeting = new EsVarSymbol('greeting');
code
.write(
// Declare variable explicitly.
greeting.declare({
// Initialize it with string literal.
value: () => esStringLiteral('Hello, World!'),
}),
)
.write(
// Call `print()` function.
esline`${print.call({
text: greeting /* Pass variable as argument. */,
})};`,
);
});
Symbol Exports And Code Evaluation
Symbols can be exported from the bundle. In this case it is possible to evaluate emitted code immediately and obtain the exported symbols.
For example, to export the function print()
from the example above, the following can be done:
import { EsFunction, esEvaluate, esline } from 'esgen';
// Create function.
const printFn = new EsFunction(
'print',
{
text: {}, // Require argument called `text`.
},
{
declare: {
at: 'exports', // Automatically export function once referred.
body: fn => code => {
code.write(
// Place on one line.
esline`console.log(${fn.args.text /* Refer declared argument symbol */});`,
);
},
},
},
);
// Evaluate emitted code.
const { print } = (await esEvaluate((_, { ns }) => {
// Explicitly refer the function to force its emission.
ns.refer(printFn);
})) as { print: (text: string) => void };
print('Hello, World!');
Classes
Classes represented by EsClass
instances.
Class may have a base class, constructor, and members.
import { EsClass, EsField, EsMemberVisibility, EsMethod, esEvaluate, esline } from 'esgen';
// Declare class
//
// export class Printer { ... }
//
const printer = new EsClass('Printer', {
classConstructor: {
args: {
// Optional argument key ends with `?`.
'initialText?': {
comment: 'Default text to print',
},
},
},
declare: {
// Export class from the bundle.
at: 'exports',
},
});
// Declare private field (without initializer).
//
// #defaultText;
//
const defaultText = new EsField('defaultText', {
visibility: EsMemberVisibility.Private,
}).declareIn(printer);
// Declare class constructor.
//
// constructor(initialText = 'Hello, World!') {
// this.#defaultText = initialText;
// }
//
printer.declareConstructor({
args: {
initialText: {
// Assign default value to optional argument.
declare: naming => esline`${naming} = 'Hello, World!'`,
},
},
body: ({
member: {
args: { initialText },
},
}) => esline`${defaultText.set('this', initialText)};`,
});
// Declare public method.
//
// print(text = this.#defaultText) {
// console.log(test);
// }
//
new EsMethod('print', {
args: { 'text?': { comment: 'Text to print' } },
}).declareIn(printer, {
args: {
text: {
declare: naming => esline`${naming} = ${defaultText.get('this')}`,
},
},
body: ({
member: {
args: { text },
},
}) => esline`console.log(${text});`,
});
// Evaluate emitted code.
const { Printer } = (await esEvaluate((_, { ns }) => {
// Explicitly refer the class to force its emission.
ns.refer(printer);
})) as {
Printer: new (initialText?: string) => { print(text?: string): void };
};
const instance = new Printer();
instance.print(); // Hello, World!
instance.print('My text'); // My text.