chensenlai 10988628a0 语音房项目初始化 | 5 年之前 | |
---|---|---|
.. | ||
lib | 5 年之前 | |
node_modules | 5 年之前 | |
.npmignore | 5 年之前 | |
README.md | 5 年之前 | |
package.json | 5 年之前 |
Generate an AST from a string template.
In computer science, this is known as an implementation of quasiquotes.
$ npm install babel-template
import template from 'babel-template';
import generate from 'babel-generator';
import * as t from 'babel-types';
const buildRequire = template(`
var IMPORT_NAME = require(SOURCE);
`);
const ast = buildRequire({
IMPORT_NAME: t.identifier('myModule'),
SOURCE: t.stringLiteral('my-module')
});
console.log(generate(ast).code);
var myModule = require('my-module');