JSPM

  • Created
  • Published
  • Downloads 4156875
  • Score
    100M100P100Q183935F
  • License MIT

Generate an AST from a string template.

Package Exports

  • babel-template

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (babel-template) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

babel-template

Generate an AST from a string template.

Install

$ npm install babel-template

Usage

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');