Crates.io | oxc_minifier |
lib.rs | oxc_minifier |
version | 0.36.0 |
source | src |
created_at | 2023-07-06 07:37:53.943925 |
updated_at | 2024-11-09 16:36:19.321449 |
description | A collection of JavaScript tools written in Rust. |
homepage | https://oxc.rs |
repository | https://github.com/oxc-project/oxc |
max_upload_size | |
id | 909652 |
size | 264,126 |
A JavaScript minifier has three components:
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.
The compressor is responsible for rewriting statements and expressions for minimal text output. Terser is a good place to start for learning the fundamentals.
The fixtures are copied from https://github.com/terser/terser/tree/master/test/compress