RevealTheme logo

JavaScript-minifier

Basisminificatie van JavaScript: verwijdert commentaar en onnodige witruimte. Gebruik een echte minifier (Terser, esbuild) voor productie.

Hoe u deze tool gebruikt

  1. 1

    Paste or type your JavaScript into the input textarea.

  2. 2

    The minified output appears instantly in the panel below as you type — there is no button to press.

  3. 3

    Check the size readout (original length, an arrow, and minified length) to see how much was removed.

  4. 4

    Select the text in the output box and copy it manually into your file.

Wat is de JavaScript-minifier?

Minificatie van JavaScript verkleint de bundelgrootte en de parsetijd. Deze tool voert een basisverwijdering van witruimte en commentaar uit. Gebruik voor productiebundels Terser, esbuild of SWC: deze voeren naamverkorting en het verwijderen van dode code uit, wat een drastisch kleinere uitvoer oplevert (vaak tussen de 60 % en 80 % reductie).

Veelvoorkomende toepassingen

  • Quickly shrinking a short, comment-heavy snippet before pasting it into a tight inline <script> tag.

  • Stripping comments out of a code sample to share a compact version in a chat or gist.

  • Estimating roughly how much comment and whitespace overhead a small file carries before setting up a real build.

  • Cleaning up a hand-written configuration object or constant block that has no strings containing slashes.

  • Demonstrating to students or teammates what basic comment and whitespace removal looks like versus a real compiler.

  • Minifying a tiny utility function for a bookmarklet where pulling in a full toolchain is overkill.

Veelgestelde vragen

Hoe verhoudt het zich tot Terser?
Terser is veel agressiever: naamverkorting, verwijdering van dode code, enzovoort. Deze tool verwijdert alleen commentaar en witruimte.
Breekt dit mijn code?
Alleen als uw JS syntaxisproblemen heeft (ontbrekende puntkomma's op dubbelzinnige posities). Moderne JavaScript is veilig.

Gerelateerde tools