babel-compiler-babelrc
For more info, please see https://github.com/gadicc/meteor-hmr/blob/master/docs/babelrc.md.
Original package info
Babel is a parser and transpiler for ECMAScript 2015 syntax and beyond, which enables some upcoming JavaScript syntax features to be used in today's browsers and runtimes.
Meteor's Babel support consists of the following core packages:
-
babel-compiler
- Exposes the Babel API on the symbolBabel
. For example,Babel.compile(source, options)
. -
babel-runtime
- Meteor versions of the external helpers used by Babel-generated code. Meteor's core packages must run on IE 8 without polyfills, so these helpers cannot assume the existence ofObject.defineProperty
,Object.freeze
, and so on.
Babel API
The babel-compiler
package exports the Babel
symbol, which exposes
functionality provided by the
meteor-babel
NPM package,
which is in turn implmented using the
babel-core
NPM package.
Note that you can only use the babel-compiler
package on the server.
Example:
1var babelOptions = Babel.getDefaultOptions(); 2 3// Modify the default options, if necessary: 4babelOptions.whitelist = [ 5 "es6.blockScoping", // For `let` 6 "es6.arrowFunctions" // For `=>` 7]; 8 9var result = Babel.compile( 10 "let square = (x) => x*x;", 11 babelOptions 12); 13 14// result.code will be something like 15// "var square = function (x) {\n return x * x;\n};"
Use Babel.compile(source)
to transpile code using a set of default
options that work well for Meteor code.
Resources: