6.18.0 • Published 6 years ago

babylon v6.18.0

Weekly downloads
8,092,578
License
MIT
Repository
github
Last release
6 years ago
  • The latest ECMAScript version enabled by default (ES2017).
  • Comment attachment.
  • Support for JSX, Flow, Typescript.
  • Support for experimental language proposals (accepting PRs for anything at least stage-0).

Credits

Heavily based on acorn and acorn-jsx, thanks to the awesome work of @RReverser and @marijnh.

API

babylon.parse(code, [options])

babylon.parseExpression(code, [options])

parse() parses the provided code as an entire ECMAScript program, while parseExpression() tries to parse a single Expression with performance in mind. When in doubt, use .parse().

Options

  • allowImportExportEverywhere: By default, import and export declarations can only appear at a program's top level. Setting this option to true allows them anywhere where a statement is allowed.

  • allowReturnOutsideFunction: By default, a return statement at the top level raises an error. Set this to true to accept such code.

  • allowSuperOutsideMethod: TODO

  • sourceType: Indicate the mode the code should be parsed in. Can be one of "script", "module", or "unambiguous". Defaults to "script". "unambiguous" will make Babylon attempt to guess, based on the presence of ES6 import or export statements. Files with ES6 imports and exports are considered "module" and are otherwise "script".

  • sourceFilename: Correlate output AST nodes with their source filename. Useful when generating code and source maps from the ASTs of multiple input files.

  • startLine: By default, the first line of code parsed is treated as line 1. You can provide a line number to alternatively start with. Useful for integration with other source tools.

  • plugins: Array containing the plugins that you want to enable.

  • strictMode: TODO

  • ranges: Adds a ranges property to each node: [node.start, node.end]

  • tokens: Adds all parsed tokens to a tokens property on the File node

Output

Babylon generates AST according to Babel AST format. It is based on ESTree spec with the following deviations:

There is now an estree plugin which reverts these deviations

AST for JSX code is based on Facebook JSX AST with the addition of one node type:

  • JSXText

Semver

Babylon follows semver in most situations. The only thing to note is that some spec-compliancy bug fixes may be released under patch versions.

For example: We push a fix to early error on something like #107 - multiple default exports per file. That would be considered a bug fix even though it would cause a build to fail.

Example

require("babylon").parse("code", {
  // parse in strict mode and allow module declarations
  sourceType: "module",

  plugins: [
    // enable jsx and flow syntax
    "jsx",
    "flow"
  ]
});

Plugins

NameCode Example
estree (repo)n/a
jsx (repo)<a attr="b">{s}</a>
flow (repo)var a: string = "";
flowComments (docs)/*:: type Foo = {...}; */
typescript (repo)var a: string = "";
doExpressionsvar a = do { if (true) { 'hi'; } };
objectRestSpread (proposal)var a = { b, ...c };
decorators (Stage 1) and decorators2 (Stage 2 proposal)@a class A {}
classProperties (proposal)class A { b = 1; }
classPrivateProperties (proposal)class A { #b = 1; }
classPrivateMethods (proposal)class A { #c() {} }
exportDefaultFrom (proposal)export v from "mod"
exportNamespaceFrom (proposal)export * as ns from "mod"
asyncGenerators (proposal)async function*() {}, for await (let a of b) {}
functionBind (proposal)a::b, ::console.log
functionSentfunction.sent
dynamicImport (proposal)import('./guy').then(a)
numericSeparator (proposal)1_000_000
optionalChaining (proposal)a?.b
importMeta (proposal)import.meta.url
bigInt (proposal)100n
optionalCatchBinding (proposal)try {throw 0;} catch{do();}
throwExpressions (proposal)() => throw new Error("")
pipelineOperator (proposal)a \|> b
nullishCoalescingOperator (proposal)a ?? b

FAQ

Will Babylon support a plugin system?

Previous issues: #1351, #6694.

We currently aren't willing to commit to supporting the API for plugins or the resulting ecosystem (there is already enough work maintaining Babel's own plugin system). It's not clear how to make that API effective, and it would limit out ability to refactor and optimize the codebase.

Our current recommendation for those that want to create their own custom syntax is for users to fork Babylon.

To consume your custom parser, you can add to your .babelrc via its npm package name or require it if using JavaScript,

{
  "parserOpts": {
    "parser": "custom-fork-of-babylon-on-npm-here"
  }
}
babel-corebabel-traversebabel-templatebabel-extract-commentsarchetype-library@xhw/clixhw-cli@arisageha/react-lazyload@arisageha/react-lazyload-fix@cashremit/cr-streamline-iconsrn-device-informationjsbugggcloud-archive-s3es-codemod@phil8795/pecuniarius-apismallfox-registrysmallfox-state@coder-mike/micro-vmwenke-babel-core@leifandersen/stopify@douleutarasgr/angular-gettext-toolsbyted-fe-cisxyj_taro_clijaibascript@seed/todosalex-frontend-sdk-stagingodc-managecthpb-plugin-socialjs-langs@rosskevin/react-docgen@mitchellhamilton/glamuinz-notification@mink-opn/build-tokensrn-0.45-fork-oreogratico@infinitebrahmanuniverse/nolb-baby@gratico/intellisenseufs-react-docmsc-converter@everything-registry/sub-chunk-1208ydw-babeldemoreganaregression-analysisbabel-plugin-regeneratormodule-walkermodule-inspectormodiarchitectoname-parametersnej-global-dependency-fixermp-loadermonorepo-repkgmutodemutiple-platformms-react-nativemps-climpreact-climr-doc-parsermpvue-lintmutant-testmy-react-native-versionpower-scopeneuron-babel-compiler@maple-leaf/jsdocn4network-loadermosquitomt-wxml-transpilernicolastest-react-nativeoma-analyzepack2box3omni.coreomni.modelsopoooopo1opo2opo3opoiki-projectorsaorsa-ast-parserorsa-js-project-pluginoutlinejs-babel-jsxgettextnui-buildnpca-syncnuke-collectornpm-template-syncody-bundlerody-compilerody-transpilernikki-snack-sdknode-consolenode-create-boilerplatenode-cubenois-react-toastnodejs-js99-modenormalize-javascriptpicidae-transformer-react-docpicidae-transformer-react-renderpili-rtc-docparsley-bundlerparse-script-tags
7.0.0-beta.47

6 years ago

7.0.0-beta.46

6 years ago

7.0.0-beta.45

6 years ago

7.0.0-beta.44

6 years ago

7.0.0-beta.43

6 years ago

7.0.0-beta.42

6 years ago

7.0.0-beta.41

6 years ago

7.0.0-beta.40

6 years ago

7.0.0-beta.39

6 years ago

7.0.0-beta.38

6 years ago

7.0.0-beta.37

6 years ago

7.0.0-beta.36

6 years ago

7.0.0-beta.35

6 years ago

7.0.0-beta.34

6 years ago

7.0.0-beta.33

6 years ago

7.0.0-beta.32

6 years ago

7.0.0-beta.31

6 years ago

7.0.0-beta.30

6 years ago

7.0.0-beta.29

7 years ago

7.0.0-beta.28

7 years ago

7.0.0-beta.27

7 years ago

7.0.0-beta.26

7 years ago

7.0.0-beta.25

7 years ago

7.0.0-beta.24

7 years ago

7.0.0-beta.23

7 years ago

7.0.0-beta.22

7 years ago

7.0.0-beta.21

7 years ago

7.0.0-beta.20

7 years ago

6.18.0

7 years ago

7.0.0-beta.19

7 years ago

7.0.0-beta.18

7 years ago

7.0.0-beta.17

7 years ago

7.0.0-beta.16

7 years ago

7.0.0-beta.15

7 years ago

7.0.0-beta.14

7 years ago

6.17.4

7 years ago

6.17.3

7 years ago

7.0.0-beta.13

7 years ago

6.17.2

7 years ago

7.0.0-beta.12

7 years ago

7.0.0-beta.11

7 years ago

7.0.0-beta.10

7 years ago

7.0.0-beta.9

7 years ago

6.17.1

7 years ago

6.17.0

7 years ago

7.0.0-beta.8

7 years ago

7.0.0-beta.7

7 years ago

7.0.0-beta.6

7 years ago

7.0.0-beta.5

7 years ago

7.0.0-beta.4

7 years ago

7.0.0-beta.3

7 years ago

6.16.1

7 years ago

6.16.0

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

6.15.0

7 years ago

6.14.1

7 years ago

6.14.0

7 years ago

6.13.1

7 years ago

6.13.0

7 years ago

6.12.0

8 years ago

6.11.6

8 years ago

6.11.5

8 years ago

6.11.4

8 years ago

6.11.3

8 years ago

6.11.2

8 years ago

6.11.1

8 years ago

6.11.0

8 years ago

6.10.0

8 years ago

6.9.2

8 years ago

6.9.1

8 years ago

6.9.0

8 years ago

6.8.4

8 years ago

6.8.3

8 years ago

6.8.2

8 years ago

6.8.1

8 years ago

6.8.0

8 years ago

5.8.38

8 years ago

6.7.1-test.2

8 years ago

6.7.1-test.1

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.2

8 years ago

6.5.0-1

8 years ago

6.5.0

8 years ago

5.8.35

8 years ago

6.4.5

8 years ago

6.4.2

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.18

8 years ago

6.3.15

8 years ago

6.3.14

8 years ago

6.3.13

8 years ago

6.3.0

8 years ago

6.2.4

8 years ago

6.2.0

8 years ago

6.1.21

8 years ago

6.1.20

8 years ago

6.1.18

8 years ago

6.1.17

8 years ago

5.8.34

8 years ago

6.1.4

8 years ago

6.1.2

8 years ago

6.0.18

8 years ago

6.0.17

8 years ago

6.0.14

8 years ago

6.0.2

8 years ago

5.8.29

8 years ago

5.8.23

9 years ago

5.8.22

9 years ago

5.8.21

9 years ago

5.8.20

9 years ago

5.8.19

9 years ago

5.8.13

9 years ago

5.8.12

9 years ago

5.8.9

9 years ago

5.8.8

9 years ago

5.8.6

9 years ago

5.8.5

9 years ago

5.8.4

9 years ago

5.8.3

9 years ago

5.8.2

9 years ago

5.7.2

9 years ago

5.7.1

9 years ago

5.6.23

9 years ago

0.0.1

9 years ago