Optimize js library size
Skill TomerAberbach/claude-config/skills/optimize-js-library-size
🤖 My Claude Code config!
npx -y skills add TomerAberbach/claude-config --skill optimize-js-library-sizeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Optimize JavaScript library size.
SKILL.md
2.4 KB, as published. Nobody here has run it
Reduce the size of this JavaScript library.
$ARGUMENTS
Goals
- Reduce the minified and gzipped/brotli minified size
- NEVER reduce minified size at the expense of gzipped/brotli minified size
- ALWAYS preserve the public API surface
- Focus on large structural changes instead of small wins
Workflow
- Read and understand the library structure
- Run relevant tests and note which ones already fail (do NOT fix them)
- Measure size
- Optimize
- Rebuild
- Measure size and compare: if size didn't improve, then revert and go back to step 4
- Run relevant tests: if tests are newly failing, then revert and go back to step 4
- Repeat from step 4
Tools
-
Ensure
terseris configured:{ // Assume modern JavaScript ecma: 2020, module: true, toplevel: true, // Run multiple times compress: { passes: 3, }, // Mangle underscore prefixed properties mangle: { properties: { regex: `^_[^_]+`, }, }, } -
Use
nodeto measure size:node --input-type=module << 'EOF' import { readFileSync } from 'fs' import { gzipSync, brotliCompressSync } from 'zlib' const raw = readFileSync('REPLACE_ME.js', 'utf8') const minified = Buffer.from(raw.replace(/^\/\/# sourceMappingURL=[^\n]+$/m, '').trimEnd()) console.log(`Minified: ${minified.length} | Gzipped: ${gzipSync(minified).length} | Brotli: ${brotliCompressSync(minified).length}`) EOF
Techniques
High-level
- Delete dead code
- Unify repeated or similar logic
- Simplify complex logic without changing behavior
- Extract repeated code to variables or functions
Low-level
- Mangle internal objects using private class fields or underscore prefixed properties
- Replace internal classes with closures returning objects
- Inline single-use functions that don't add clarity
- Restructure single-use functions that add clarity to be inlinable by
terser - Replace
functions with arrow functions - Replace
switchwithifandelse - Replace
===/!==with==/!=when it doesn't change behavior - Replace strict checks with truthy/falsy checks when it doesn't change behavior
These aren't exhaustive. Reason from first principles when none fits cleanly.