Try our Chrome extension
Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!Changedetection.io needs your support!
You can help us by supporting changedetection.io on these platforms;
- Rate us at AlternativeTo.net
- Star us on GitHub
- Follow us at Twitter/X
- G2 Software reviews
- Check us out on LinkedIn
- And tell your friends and colleagues :)
The more popular changedetection.io is, the more time we can dedicate to adding amazing features!
Many thanks :)
changedetection.io team
์์ง ์์ ์ด ์
False
์์ง ์์ ์ด ์
ํธ๋ฆฌ๊ฑฐ ํ ์คํธ ๋ฌด์๋ ํ ์คํธ ์ฐจ๋จ ํ ์คํธ
6์๊ฐ ์
Skip to content
Navigation Menu
Sign in Appearance settings
* Platform
+ AI CODE CREATION
o GitHub Copilot Write better code with AI
o GitHub Copilot app Direct agents from issue to merge
o MCP Registry Integrate external tools
+ DEVELOPER WORKFLOWS
o Actions Automate any workflow
o Codespaces Instant dev environments
o Issues Plan and track work
o Code Review Manage code changes
o Code Quality Enforce quality at merge
+ APPLICATION SECURITY
o GitHub Advanced Security Find and fix vulnerabilities
o Code security Secure your code as you build
o Secret protection Stop leaks before they start
+ EXPLORE
o Why GitHub
o Documentation
o Blog
o Changelog
o Marketplace
View all features
* Solutions
+ BY COMPANY SIZE
o Enterprises
o Small and medium teams
o Startups
o Nonprofits
+ BY USE CASE
o App Modernization
o DevSecOps
o DevOps
o CI/CD
o View all use cases
+ BY INDUSTRY
o Healthcare
o Financial services
o Manufacturing
o Government
o View all industries
View all solutions
* Resources
+ EXPLORE BY TOPIC
o AI
o Software Development
o DevOps
o Security
o View all topics
+ EXPLORE BY TYPE
o Customer stories
o Events & webinars
o Ebooks & reports
o Business insights
o GitHub Skills
+ SUPPORT & SERVICES
o Documentation
o Customer support
o Community forum
o Trust center
o Partners
View all resources
* Open Source
+ COMMUNITY
o GitHub Sponsors Fund open source developers
+ PROGRAMS
o Security Lab
o Maintainer Community
o Accelerator
o GitHub Stars
o Archive Program
+ REPOSITORIES
o Topics
o Trending
o Collections
* Enterprise
+ ENTERPRISE SOLUTIONS
o Enterprise platform AI-powered developer platform
+ AVAILABLE ADD-ONS
o GitHub Advanced Security Enterprise-grade security features
o Copilot for Business Enterprise-grade AI features
o Premium Support Enterprise-grade 24/7 support
* Pricing
Type / to search
Sign in
Sign up Appearance settings
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Uh oh!
There was an error while loading. Please reload this page.
babel / babel Public
* Uh oh!
There was an error while loading. Please reload this page.
* Notifications You must be signed in to change notification settings
* Fork 6k
* Star 44k
* Code
* Issues 590
* Pull requests 174
* Discussions
* Actions
* Projects
* Security and quality 4
* Insights
Additional navigation options
* Code
* Issues
* Pull requests
* Discussions
* Actions
* Projects
* Security and quality
* Insights
main
Branches Tags
Go to file
Code
Open more actions menu
Folders and files
Name Name Last commit message Last commit date
Latest commit
History
18,606 Commits
18,606 Commits
.circleci .circleci
.codesandbox .codesandbox
.github .github
.husky .husky
.vscode .vscode
.yarn .yarn
benchmark benchmark
codemods codemods
doc doc
eslint eslint
lib lib
packages packages
scripts scripts
test test
.c8rc .c8rc
.editorconfig .editorconfig
.git-blame-ignore-revs .git-blame-ignore-revs
.gitattributes .gitattributes
.gitignore .gitignore
.mailmap .mailmap
.prettierignore .prettierignore
.prettierrc .prettierrc
.yarnrc.yml .yarnrc.yml
CHANGELOG.md CHANGELOG.md
CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md
CONTRIBUTING.md CONTRIBUTING.md
Gulpfile.ts Gulpfile.ts
LICENSE LICENSE
Makefile Makefile
Makefile.js Makefile.js
Makefile.source.ts Makefile.source.ts
README.md README.md
SECURITY.md SECURITY.md
SONG.md SONG.md
babel-worker.ts babel-worker.ts
babel.config.ts babel.config.ts
babel.sublime-project babel.sublime-project
codecov.yml codecov.yml
eslint.config.ts eslint.config.ts
jest.config.ts jest.config.ts
knip.config.ts knip.config.ts
make.cmd make.cmd
package.json package.json
renovate.json renovate.json
tsconfig.base.json tsconfig.base.json
tsconfig.dts-bundles.json tsconfig.dts-bundles.json
tsconfig.json tsconfig.json
tsconfig.paths.json tsconfig.paths.json
tsconfig.tstyche.json tsconfig.tstyche.json
tstyche.json tstyche.json
yarn.config.cjs yarn.config.cjs
yarn.lock yarn.lock
View all files
Repository files navigation
*
* README
* Code of conduct
* Contributing
* MIT license
* Security
More items
The compiler for writing next generation JavaScript.
Supporting Babel
Babel (pronounced "babble") is a community-driven project used by many companies and projects, and is maintained by a group of volunteers. If you'd like to help support the future of the project, please consider:
* Giving developer time on the project. (Message us on Twitter or Slack for guidance!)
* Giving funds by becoming a sponsor on Open Collective or GitHub (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 coalescing
function greet(input) {
return input ?? "Hello world";
}
Out
function greet(input) {
return input != null ? input : "Hello world";
}
Try it out at our REPL.
FAQ
Who maintains Babel?
Mostly a handful of volunteers, funded by you! Please check out our team 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 or open a GitHub Discussion, join our Slack Community (you can sign up here for an invite), ask a question on Stack Overflow, or ping us on Bluesky.
Where are the docs?
Check out our website: babeljs.io, and report issues/features at babel/website.
Want to report a bug or request a feature?
Please read through our CONTRIBUTING.md and fill out the issue template at babel/issues!
Want to contribute to Babel?
Check out:
* Our #development Slack channel and say hi! (sign-up)
* Issues with the good first issue and help wanted label. We suggest also looking at the closed ones to get a sense of the kinds of issues you can tackle.
Some resources:
* Our CONTRIBUTING.md to get started with setting up the repo.
* Our discussions/notes/roadmap: babel/notes
* Our progress on TC39 proposals: babel/proposals
* Our blog which contains release posts and explanations: /blog
* Our videos page with talks about open source and Babel: /videos
* Our podcast
How is the repo structured?
The Babel repo is managed as a monorepo that is composed of many npm packages.
License
MIT
About
๐ Babel is a compiler for writing next generation JavaScript.
babel.dev
Topics
astbabelcompileres2015es6flavortownjavascript
Resources
Readme
MIT license
Code of conduct
Code of conduct
Contributing
Contributing
Security policy
Security policy
Activity
Custom properties
Stars
44.0k stars
Watchers
826 watching
Forks
6.0k forks
Report repository
Releases
Sponsor this project
Packages
Used by
Contributors
Languages
Footer
ยฉ 2026 GitHub, Inc.
Footer navigation
* Terms
* Privacy
* Security
* Status
* Community
* Docs
* Contact
* Manage cookies
* Do not share my personal information
You canโt perform that action at this time.
ํ์ฌ ๋น๊ต๋ ๊ทธ๋ํฝ ๋ฐฉ์์ด ์๋ ํ
์คํธ ๊ธฐ์ค์ผ๋ก ์ํ๋๋ฉฐ, ์ต์ ์คํฌ๋ฆฐ์ท๋ง ์ ๊ณต๋ฉ๋๋ค.
์คํฌ๋ฆฐ์ท์ ์ฌ์ฉํ๋ ค๋ฉด ์คํฌ๋ฆฐ์ท์ ์ง์ํ๋ ๋ฐฉ์(Sockpuppetbrowser, Selenium ๋ฑ)์ด ํ์ํฉ๋๋ค.