21 releases (12 breaking)

new 0.12.5 Apr 22, 2024
0.11.1 Apr 3, 2024
0.11.0 Mar 30, 2024
0.4.0 Dec 8, 2023
0.1.0 Jul 27, 2023

#1705 in Development tools

Download history 11/week @ 2024-01-08 3/week @ 2024-01-29 4/week @ 2024-02-05 2/week @ 2024-02-12 212/week @ 2024-02-19 160/week @ 2024-02-26 159/week @ 2024-03-04 155/week @ 2024-03-11 8/week @ 2024-03-18 119/week @ 2024-03-25 266/week @ 2024-04-01 288/week @ 2024-04-08 140/week @ 2024-04-15

813 downloads per month
Used in oxc

MIT license

1MB
23K SLoC

Minifier

A JavaScript minifier has three components:

  1. printer
  2. mangler
  3. compressor

Mangler

The mangler implementation is part of the SymbolTable residing in oxc_semantic. It is responsible for shortening variables. Its algorithm should be gzip friendly.

The printer is also responsible for printing out the shortened variable names.

Compressor

The compressor is responsible for rewriting statements and expressions for minimal text output. Terser is a good place to start for learning the fundamentals.

Terser Tests

The fixtures are copied from https://github.com/terser/terser/tree/master/test/compress


lib.rs:

ECMAScript Minifier

Dependencies

~5–13MB
~122K SLoC