Giter VIP home page Giter VIP logo

babel's Introduction

babel

The compiler for writing next generation JavaScript.

Business Strategy Status Travis Status CircleCI Status Coverage Status Slack Status NPM Downloads

Babel is a community-driven tool that helps you write the latest version of JavaScript.

When your supported environments don't support certain features natively, it will help you compile it down to a supported version.

In

// ES2015 arrow function
[1, 2, 3].map((n) => n + 1);

Out

[1, 2, 3].map(function(n) {
  return n + 1;
});

Try it out at our REPL and follow us at @babeljs.

FAQ

Docs?

Check out our website: babeljs.io

Looking for support?

For questions and support please visit our discussion forum, sign up for our Slack community, or StackOverflow.

Want to report a bug or request a feature?

Bugs and feature requests can be posted at https://github.com/babel/babel/issues.

We've moved our issues from phabricator back to github issues!

Former phabricator issue urls now automatically redirect to their corresponding Github issue:

https://phabricator.babeljs.io/T2168 mostly corresponds to babel#2168.

Want to report an issue with babeljs.io (the website)?

For documentation and website issues please visit the babel/babel.github.io repo.

Want to contribute to Babel?

Check out our CONTRIBUTING.md. If you have already joined slack, join our #development channel!

You can also start by checking out the issues with the help-wanted label.

Our discussions/notes/roadmap: babel/notes

Packages

The Babel repo is managed as a monorepo; it's composed of many npm packages.

Core Packages

Package Version Dependencies
babel-core npm Dependency Status
babylon npm Dependency Status
babel-traverse npm Dependency Status
babel-generator npm Dependency Status

babel-core is the Babel compiler itself; it exposes the babel.transform method, where transformedCode = transform(src).code.

The compiler can be broken down into 3 parts:

  • The parser: babylon (moved to a separate repo and versioned independently)
  • The transformer[s]: All the plugins/presets
  • The generator: babel-generator

The flow goes like this:

input string -> babylon parser -> AST -> transformer[s] -> AST -> babel-generator -> output string

Check out the babel-handbook for more information on this.

Other

Package Version Dependencies
babel-cli npm Dependency Status
babel-types npm Dependency Status
babel-polyfill npm Dependency Status
babel-runtime npm Dependency Status
babel-register npm Dependency Status
babel-template npm Dependency Status
babel-helpers npm Dependency Status
babel-code-frame npm Dependency Status
  • babel-cli is the CLI tool that runs babel-core and helps with outputting to a directory, a file, stdout and more (also includes babel-node). Check out the docs.
  • babel-types is used to validate, build, change AST nodes.
  • babel-polyfill is literally a wrapper around core-js and regenerator-runtime. Check out the docs.
  • babel-runtime is similar to the polyfill except that it doesn't modify the global scope and is to be used with babel-plugin-transform-runtime (usually in library/plugin code). Check out the docs.
  • babel-register is a way to automatically compile files with babel on the fly by binding to node's require. Check out the docs.
  • babel-template is a helper function to make AST nodes. Instead you can pass a string representing the code you want to create rather than tediously building them using babel-types.
  • babel-helpers is a set of premade babel-template functions that are used in some babel plugins.
  • babel-code-frame is a standalone package used to generate errors that prints the source code and points to error locations.

After Babel 6, the default transforms were removed; if you don't specify any plugins/presets it will just return the original source code.

The transformer[s] used in Babel are the independent pieces of code that transform specific things. For example: the es2015-arrow-functions transform specifically changes arrow functions into a regular function. Presets are just simply an array of plugins that make it easier to run a whole a set of transforms without specifying each one manually.

Package Version Dependencies Description
babel-preset-env npm Dependency Status automatically determines plugins and polyfills you need based on your supported environments

You can find community maintained presets on npm

Plugins are the heart of Babel and what make it work.

You can find community plugins on npm.

Transform Plugins

There are many kinds of plugins: ones that convert ES6/ES2015 to ES5, transform to ES3, minification, JSX, flow, experimental features, and more. Check out our website for more.

Syntax Plugins

These just enable the transform plugins to be able to parse certain features (the transform plugins already include the syntax plugins so you don't need both): babel-plugin-syntax-x. Check out our website for more.

Helpers

These are mostly for internal use in various plugins: babel-helper-x.

Team

Core members

Babel Daniel Tschinder Logan Smyth Henry Zhu
Babel Daniel Tschinder Logan Smyth Henry Zhu
:octocat: @babel @danez @loganfsmyth @hzoo
๐Ÿฆ @babeljs @TschinderDaniel @loganfsmyth @left_pad

Members

Andrew Levine Boopathi Rajaa Brian Ng Dan Harper diogo franco Aaron Ang Artem Yavorsky
Andrew Levine Boopathi Rajaa Brian Ng Dan Harper Diogo Franco Aaron Ang Artem Yavorsky
@drewml @boopathi @existentialism @danharper @kovensky @aaronang @yavorsky
@drewml @heisenbugger @existentialism @DanHarper7 @kovnsk @_aaronang @yavorsky_
Juriy Zaytsev Kai Cataldo Moti Zilberman Sven Sauleau Samuel Reed Sergey Rubanov
Juriy Zaytsev Kai Cataldo Moti Zilberman Sven Sauleau Samuel Reed Sergey Rubanov
@kangax @kaicataldo @motiz88 @xtuc @STRML @chicoxyzzy
@kangax @kai_cataldo @motiz88 @svensauleau @STRML_ @chicoxyzzy

Non-Human Members

Babel Bot
@babel-bot
@babeljs

Inactive members

Amjad Masad James Kyle Jesse McCarthy Sebastian McKenzie (Creator)
Amjad Masad James Kyle Jesse McCarthy Sebastian McKenzie
@amasad @thejameskyle @jmm @sebmck
@amasad @thejameskyle @mccjm @kittens

License

MIT

babel's People

Contributors

aluisioasg avatar amasad avatar benjamn avatar chicoxyzzy avatar danez avatar eventualbuddha avatar existentialism avatar gaearon avatar guybedford avatar hzoo avatar jamiebuilds avatar jmm avatar jridgewell avatar kpdecker avatar loganfsmyth avatar lydell avatar monsanto avatar motiz88 avatar neverberlerfellerer avatar rreverser avatar samccone avatar samwgoldman avatar sebmck avatar sindresorhus avatar sophiebits avatar vhf avatar webpro avatar xtuc avatar zertosh avatar zloirock avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.