UNPKG

880 BMarkdownView Raw
1# Maintenance status
2
3Bublé 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.
4
5Since 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.
6
7---
8
9# Bublé
10
11## The blazing fast, batteries-included ES2015 compiler
12
13* Try it out at [buble.surge.sh](https://buble.surge.sh)
14* Read the docs at [buble.surge.sh/guide](https://buble.surge.sh/guide)
15
16
17## Quickstart
18
19Via the command line...
20
21```bash
22npm install -g buble
23buble input.js > output.js
24```
25
26...or via the JavaScript API:
27
28```js
29var buble = require( 'buble' );
30var result = buble.transform( source ); // { code: ..., map: ... }
31```
32
33
34## License
35
36MIT