- Notifications
You must be signed in to change notification settings - Fork0
🐠 Babel is a compiler for writing next generation JavaScript.
License
apapirovski/babel
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The compiler for writing next generation JavaScript.
Babel is community-driven and thus mostly maintained by a group ofvolunteers. It has a lot ofcompanies 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:
- Giving developer time on the project. (Message us onTwitter orSlack)
- Giving funds by becoming a backer/sponsor on OpenCollective
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){returnn+1;});
Try it out at ourREPL.
Mostly a handful of volunteers! Please check out ourteam page!
For questions and support please visit join ourSlack Community, ask a question onStack Overflow, or ping us onTwitter.
Check out our website:babeljs.io, and report issues/features atbabel/website.
Please read through ourCONTRIBUTING.md and fill out the issue template atbabel/issues!
Check out ourCONTRIBUTING.md to get started with setting up the repo.
- If you have already joined Slack, join our#development channel and say hi!
- Check out the issues with thegood first issue andhelp wanted label. We suggest also looking at the closed ones to get a sense of the kinds of issues you can tackle.
- Our discussions/notes/roadmap:babel/notes
- Our progress on TC39 proposals:babel/proposals
The Babel repo is managed as amonorepo that is composed of manynpm packages.
Support us with a monthly donation and help us continue our activities. [Become a backer]
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
About
🐠 Babel is a compiler for writing next generation JavaScript.
Resources
License
Code of conduct
Stars
Watchers
Forks
Packages0
Languages
- JavaScript99.7%
- Other0.3%