6.26.1 • Published 6 years ago

babel-generator v6.26.1

Weekly downloads
3,491,250
License
MIT
Repository
github
Last release
6 years ago

babel-generator

Turns an AST into code.

Install

npm install --save-dev babel-generator

Usage

import {parse} from 'babylon';
import generate from 'babel-generator';

const code = 'class Example {}';
const ast = parse(code);

const output = generate(ast, { /* options */ }, code);

Options

Options for formatting output:

nametypedefaultdescription
auxiliaryCommentBeforestringOptional string to add as a block comment at the start of the output file
auxiliaryCommentAfterstringOptional string to add as a block comment at the end of the output file
shouldPrintCommentfunctionopts.commentsFunction that takes a comment (as a string) and returns true if the comment should be included in the output. By default, comments are included if opts.comments is true or if opts.minifed is false and the comment contains @preserve or @license
retainLinesbooleanfalseAttempt to use the same line numbers in the output code as in the source code (helps preserve stack traces)
retainFunctionParensbooleanfalseRetain parens around function expressions (could be used to change engine parsing behavior)
commentsbooleantrueShould comments be included in output
compactboolean or 'auto'opts.minifiedSet to true to avoid adding whitespace for formatting
minifiedbooleanfalseShould the output be minified
concisebooleanfalseSet to true to reduce whitespace (but not as much as opts.compact)
quotes'single' or 'double'autodetect based on ast.tokensThe type of quote to use in the output
filenamestringUsed in warning messages
flowCommaSeparatorbooleanfalseSet to true to use commas instead of semicolons as Flow property separators
jsonCompatibleStringsbooleanfalseSet to true to run jsesc with "json": true to print "\u00A9" vs. "©";

Options for source maps:

nametypedefaultdescription
sourceMapsbooleanfalseEnable generating source maps
sourceMapTargetstringThe filename of the generated code that the source map will be associated with
sourceRootstringA root for all relative URLs in the source map
sourceFileNamestringThe filename for the source code (i.e. the code in the code argument). This will only be used if code is a string.

AST from Multiple Sources

In most cases, Babel does a 1:1 transformation of input-file to output-file. However, you may be dealing with AST constructed from multiple sources - JS files, templates, etc. If this is the case, and you want the sourcemaps to reflect the correct sources, you'll need to pass an object to generate as the code parameter. Keys should be the source filenames, and values should be the source content.

Here's an example of what that might look like:

import {parse} from 'babylon';
import generate from 'babel-generator';

const a = 'var a = 1;';
const b = 'var b = 2;';
const astA = parse(a, { sourceFilename: 'a.js' });
const astB = parse(b, { sourceFilename: 'b.js' });
const ast = {
  type: 'Program',
  body: [].concat(astA.program.body, astB.program.body)
};

const { code, map } = generate(ast, { sourceMaps: true }, {
  'a.js': a,
  'b.js': b
});

// Sourcemap will point to both a.js and b.js where appropriate.
babel-corearchetype-libraryinvento.translation.macrobabel-plugin-transform-ng1-jsxxhw-cli@arisageha/react-lazyload@arisageha/react-lazyload-fix@sirius-black/taro-clijsbuggg@phil8795/pecuniarius-apismallfox-registrysmallfox-statewenke-babel-core@b2nil/megalo-targetsxyj_taro_cli@cloudkite/nextjaibascriptalex-frontend-sdk-stagingcthpb-plugin-socialstatics-plugin-reactuinz-notificationrn-0.45-fork-oreogratico@infinitebrahmanuniverse/nolb-babel-gmsc-converter@everything-registry/sub-chunk-1201ydw-babeldemorn-obfuscatingtranslate-wepy-script-loader@grandrounds/react-native@heroai/react-native-obfuscating-transformeresdoceslint-plugin-classify-importsesdoc2-publish-html-pluginesdoc-publish-html-pluginesdoc2eslint-plugin-patternplate@gataca-team/react-native-obfuscator-fork@gtarojs/taroize@gtarojs/cli@gzup/react-image-file-resizererror-trapperepns-frontend-sdk-staging@harrysong/taroizeeschecker@greminder/bootstrap-material-designestransducers@inoueyuworks/react-native-obfuscating-transformerfhir2@igniswap/igni-swap-lib@iceland/intelligent-code@iceland/material-engineextra-node-modules-css-pluginextra-node-odules-css-plugin@inversion-of-control/electron-project@innoswap/core@innodata/vue-v3-ya-metrika@elsouza1985/react-org-chart@eliteswap/v2-core@effectfuljs/compiler@ffwdmusic/next@flatfishjs/reactize@fish-kit/md-tools-plugin-react@flambo/react-doc@flux159/esdoc@gaearon/prepack@gospry/next@gift-adv/taro-cli@goodforonefare/create-shopify@dww/relay-compiler@dymp/dylphin-cli@dymp/dylphinize@extjs/reactor-webpack-plugin@expo/apollo-codegen@epnsproject/frontend-sdk@epnsproject/frontend-sdk-staging@entria/font-generator@fabwcie/ckeditor5-preview@fangchan/taro-clifancy-mp-extensionfancy-transferfactorxesxdocesx-bowerexpose-webpack-modulefahad-redux-axios-midlewareeverspry-detail-dialog@jimwong/istanbul-lib-instrumentfis-msprd-babel-core_6_21_0@jkottnauer/react-native@jacobjonsson/stylexfros-transformfreemamba@kirrosh/pts@kodinghandle/bullswap-libsps-cli@ktree/react-native-obfuscating-transformerstatic-nextstupid-treeshaking-jsgenerator-scalable-react-redux
6.26.1

6 years ago

7.0.0-beta.3

7 years ago

7.0.0-beta.2

7 years ago

7.0.0-beta.1

7 years ago

7.0.0-beta.0

7 years ago

7.0.0-alpha.20

7 years ago

6.26.0

7 years ago

7.0.0-alpha.19

7 years ago

7.0.0-alpha.18

7 years ago

7.0.0-alpha.17

7 years ago

7.0.0-alpha.16

7 years ago

7.0.0-alpha.15

7 years ago

7.0.0-alpha.14

7 years ago

6.25.0

7 years ago

7.0.0-alpha.12

7 years ago

7.0.0-alpha.11

7 years ago

7.0.0-alpha.10

7 years ago

7.0.0-alpha.9

7 years ago

7.0.0-alpha.8

7 years ago

6.24.1

7 years ago

7.0.0-alpha.7

7 years ago

7.0.0-alpha.3

7 years ago

6.24.0

7 years ago

7.0.0-alpha.1

7 years ago

6.23.0

7 years ago

6.22.0

7 years ago

6.21.0

7 years ago

6.20.0

7 years ago

6.19.0

7 years ago

6.18.0

7 years ago

6.17.0

8 years ago

6.16.0

8 years ago

6.14.0

8 years ago

6.11.4

8 years ago

6.11.3

8 years ago

6.11.0

8 years ago

6.10.2

8 years ago

6.10.0

8 years ago

6.9.0

8 years ago

6.8.0

8 years ago

6.7.7

8 years ago

6.7.5

8 years ago

6.7.2

8 years ago

6.7.0

8 years ago

6.6.5

8 years ago

6.6.4

8 years ago

6.6.0

8 years ago

6.5.0-1

8 years ago

6.5.0

8 years ago

6.4.5

8 years ago

6.4.3

8 years ago

6.4.2

8 years ago

6.4.1

8 years ago

6.4.0

8 years ago

6.3.26

8 years ago

6.3.25

8 years ago

6.3.21

8 years ago

6.3.20

8 years ago

6.3.19

8 years ago

6.3.18

8 years ago

6.3.17

8 years ago

6.3.16

8 years ago

6.3.15

8 years ago

6.3.14

8 years ago

6.3.13

8 years ago

6.3.1

8 years ago

6.3.0

8 years ago

6.2.4

8 years ago

6.2.3

8 years ago

6.2.0

8 years ago

6.1.20

8 years ago

6.1.18

8 years ago

6.1.17

8 years ago

6.1.16

8 years ago

6.1.15

8 years ago

6.1.13

8 years ago

6.1.12

8 years ago

6.1.11

8 years ago

6.1.10

8 years ago

6.1.9

8 years ago

6.1.8

8 years ago

6.1.7

8 years ago

6.1.6

8 years ago

6.1.5

8 years ago

6.1.4

8 years ago

6.1.2

8 years ago

6.0.19

8 years ago

6.0.18

8 years ago

6.0.15

8 years ago

6.0.14

8 years ago

6.0.12

8 years ago

6.0.2

8 years ago

6.0.0

8 years ago