ESBeautify
Blazing fast JavaScript beautifier and minifier
WIP!
Features
- Generates JavaScript code up to ECMAScript® 2021
- Generated output is 98 % identical to the input.
- Supports prettier options
- Supports code compression (minification)
- Supports JSON serializing
- Supports source map
- Supports incremental code generation
- Performance
- Optimized for use on handheld devices such as a mobile phone or tablet
- No backtracking
- Low memory usage
API
Esbeautify
uses Escaya
to generat JavaScript code up to ECMAScript® 2021,
and does some code formatting based on your options.
Options
Example usage:
; ; produces the string '[a = b] = c'
This is how you minify
; ; produces the string '[a=b]=c'