Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

🐠 Babel is a compiler for writing next generation JavaScript.

License

NotificationsYou must be signed in to change notification settings

babel/babel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

babel

The compiler for writing next generation JavaScript.

Gitpod ready-to-code

v7 npm Downloadsv6 npm Downloads

GitHub CI StatusCoverage StatusSlack StatusFollow on Twitter

Supporting Babel

Backers on Open CollectiveSponsors on Open CollectiveBusiness Strategy Status

Babel (pronounced"babble") is a community-driven project used by many companies and projects, and is maintained by a group ofvolunteers. If you'd like to help support the future of the project, please consider:

  • Giving developer time on the project. (Message us onTwitter orSlack for guidance!)
  • Giving funds by becoming a sponsor onOpen Collective orGitHub (which goes to our Open Collective account)!

Sponsors

Our top sponsors are shown below! [Become a sponsor]

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

// ES2020 nullish coalescingfunctiongreet(input){returninput??"Hello world";}

Out

functiongreet(input){returninput!=null ?input :"Hello world";}

Try it out at ourREPL.

FAQ

Who maintains Babel?

Mostly a handful of volunteers, funded by you! Please check out ourteam page!

Is there a Babel song?

I'm so glad you asked:Hallelujah —— In Praise of Babel by@angus-c,audio version by@swyx. Tweet us your recordings!

Looking for support?

For questions and support please join ourSlack Community (you cansign up here for an invite), ask a question onStack Overflow, or ping us onTwitter.

Where are the docs?

Check out our website:babeljs.io, and report issues/features atbabel/website.

Want to report a bug or request a feature?

Please read through ourCONTRIBUTING.md and fill out the issue template atbabel/issues!

Want to contribute to Babel?

Check out:

Some resources:

How is the repo structured?

The Babel repo is managed as amonorepo that is composed of manynpm packages.

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp