#minify #javascript #linter #typescript #parser

oxc_minifier

A collection of JavaScript tools written in Rust

41 releases (22 breaking)

new 0.22.0 Jul 24, 2024
0.20.0 Jul 11, 2024
0.11.0 Mar 30, 2024
0.4.0 Dec 8, 2023
0.1.0 Jul 27, 2023

#1264 in Development tools

Download history 224/week @ 2024-04-04 159/week @ 2024-04-11 277/week @ 2024-04-18 15/week @ 2024-04-25 120/week @ 2024-05-09 149/week @ 2024-05-16 69/week @ 2024-05-23 259/week @ 2024-05-30 480/week @ 2024-06-06 248/week @ 2024-06-13 85/week @ 2024-06-20 1285/week @ 2024-06-27 1203/week @ 2024-07-04 828/week @ 2024-07-11 661/week @ 2024-07-18

3,989 downloads per month
Used in oxc

MIT license

2MB
53K 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

~7–13MB
~150K SLoC