JFJulien Fourelinjulienfourel.hashnode.dev·Sep 9 · 7 min readJSON Minification in Practice: From Readable Data to Production PayloadsIntroduction JSON is probably one of the most common data formats in modern web development. APIs return JSON. Applications store configuration in JSON. Build systems generate JSON. Developers use it 00
JFJulien Fourelinjulienfourel.hashnode.dev·Aug 28 · 7 min readJavaScript Minification: From Source Code to Production BundleIntroduction JavaScript applications are usually written for readability, not for efficient delivery. Source code contains meaningful variable names, comments, whitespace, and module structures that m00
JFJulien Fourelinjulienfourel.hashnode.dev·Aug 4 · 4 min readStop Reading Raw JSON: A Better Workflow for Debugging API ResponsesWhen debugging APIs, configuration files or exported application data, developers often waste time trying to understand huge JSON payloads. The issue isn't JSON itself—it's the workflow. Instead of sc00