#javascript #minify #typescript #linter #parser

oxc_minifier

A collection of JavaScript tools written in Rust

65 releases (36 breaking)

0.36.0 Nov 9, 2024
0.34.0 Oct 26, 2024
0.22.1 Jul 28, 2024
0.11.0 Mar 30, 2024
0.1.0 Jul 27, 2023

#30 in #minify

Download history 975/week @ 2024-07-29 1397/week @ 2024-08-05 928/week @ 2024-08-12 931/week @ 2024-08-19 661/week @ 2024-08-26 1491/week @ 2024-09-02 1585/week @ 2024-09-09 1740/week @ 2024-09-16 3599/week @ 2024-09-23 796/week @ 2024-09-30 1200/week @ 2024-10-07 843/week @ 2024-10-14 1330/week @ 2024-10-21 647/week @ 2024-10-28 1290/week @ 2024-11-04 832/week @ 2024-11-11

4,190 downloads per month
Used in oxc

MIT license

4.5MB
99K 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

~8–14MB
~171K SLoC