Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bublejs/buble
https://github.com/bublejs/buble
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bublejs/buble
- Owner: bublejs
- License: mit
- Created: 2017-09-23T17:13:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:57:47.000Z (almost 2 years ago)
- Last Synced: 2024-05-21T22:04:14.841Z (7 months ago)
- Language: JavaScript
- Homepage: https://buble.surge.sh
- Size: 1.2 MB
- Stars: 870
- Watchers: 9
- Forks: 67
- Open Issues: 85
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-github-star - buble
- awesome-list - buble
README
# Maintenance status
Bublé was created when ES2015 was still the future. Nowadays, all modern browsers support all of ES2015 and (in some cases) beyond. Unless you need to support IE11, you probably don't need to use Bublé to convert your code to ES5.
Since IE11 is an unfortunate reality for some people, we will continue to release bugfixes, but new features won't be added unless in exceptional circumstances.
---
# Bublé
## The blazing fast, batteries-included ES2015 compiler
* Try it out at [buble.surge.sh](https://buble.surge.sh)
* Read the docs at [buble.surge.sh/guide](https://buble.surge.sh/guide)## Quickstart
Via the command line...
```bash
npm install -g buble
buble input.js > output.js
```...or via the JavaScript API:
```js
var buble = require( 'buble' );
var result = buble.transform( source ); // { code: ..., map: ... }
```## License
MIT