52
How we reduced the size of our JavaScript bundles by 33%
(dropbox.tech)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
Sure, as I said it's similar to decompiling normal binaries, which is hard to read (even when you're used to it).
I'm not talking about reading minified JS. I'm saying: un-minifying JS gets you a way more readable result than decompiling native binaries does. I've done both more than often enough to know this difference well.
I've written mods and patches for dozens of minified sites, and it's never been too hard. I've written mods and patches for native applications, and it's waaaay harder - even just finding free space in the binary where you can inject your code and jump to/from is annoying, let alone actually writing your changes in ASM. All of this is immediately solved even with minified JS.