1. buble
The blazing fast, batteries-included ES2015 compiler
buble
Package: buble
Created by: bublejs
Last modified: Mon, 13 Jun 2022 05:14:19 GMT
Version: 0.20.0
License: MIT
Downloads: 1,268,300
Repository: https://github.com/bublejs/buble

Install

npm install buble
yarn add buble

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

Quickstart

Via the command line...

 npm install -g buble
buble input.js > output.js

...or via the JavaScript API:

 var buble = require( 'buble' );
var result = buble.transform( source ); // { code: ..., map: ... }

License

MIT

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code