Skip to content
/ babel Public
forked from babel/babel

🐠 Babel is a compiler for writing next generation JavaScript.

License

Notifications You must be signed in to change notification settings

CosmosV/babel

This branch is 5350 commits behind babel/babel:master.

Folders and files

NameName
Last commit message
Last commit date
Sep 16, 2017
Sep 26, 2017
Jun 23, 2017
Aug 24, 2017
Aug 2, 2017
Sep 26, 2017
Sep 26, 2017
Mar 28, 2017
Sep 1, 2017
Jul 26, 2017
Mar 10, 2015
Sep 19, 2017
Jun 27, 2017
Aug 5, 2017
Oct 17, 2016
Sep 26, 2017
Aug 12, 2017
Sep 16, 2017
Jun 27, 2016
Aug 13, 2017
Sep 26, 2017
Jan 5, 2017
Sep 26, 2017
Sep 25, 2017
Sep 13, 2017
Aug 20, 2017
Apr 10, 2017
Sep 26, 2017
Sep 26, 2017
Sep 26, 2017

Repository files navigation

babel

The compiler for writing next generation JavaScript.

Travis Status CircleCI Status Coverage Status Slack Status npm Downloads

Supporting Babel

Backers on Open Collective Sponsors on Open Collective Business Strategy Status

Babel is community-driven and thus mostly maintained by a group of volunteers. It has a lot of companies and projects using it but almost no sponsors/people funded to work on it. If you'd like to help maintain the future of the project, please consider:

Intro

Babel is a tool that helps you write code in the latest version of JavaScript. When your supported environments don't support certain features natively, Babel will help you compile those features 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?

Read through our CONTRIBUTING.md and fill out the issue template at babel/issues.

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

For documentation and website issues please visit the babel/website 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 Our progress on TC39 proposals: babel/proposals

How is the repo structured?

The Babel repo is managed as a monorepo that is composed of many npm packages.

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

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

License

MIT

About

🐠 Babel is a compiler for writing next generation JavaScript.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.7%
  • Other 0.3%