DEV Community

Discussion on: Why the heck is everyone talking about WebAssembly?

Collapse
 
ben profile image
Ben Halpern

One interesting case I've read into a bit, but I'll admit I've stayed pretty surface level with is Dropbox developing client-side compression which would be fairly infeasible with JavaScript:

blogs.dropbox.com/tech/2018/06/bui...

It pushes client-side computing way further than ever possible before in the browser.

Thread Thread
 
ryan profile image
Ryan • Edited

Client-side compression is a great use case, I didn't even think about that.

If a user wants to take a photo on their phone and post it to a website, they'll upload it in the default maximum resolution and then the server will have to compress it. With wasm the resizing could be done in browser and save bandwidth/data plus server resources.