The unofficial way to embed Squoosh into your web app.

I wanted the functionality of Squoosh, but in my web app. Here’s how I did it.

Earlier this week I wrote about a tool that I created to create an optimal HTML <picture> element with an associated set of optimized images. The app is pretty cool (even if I do say so my self).

I think Squoosh is an amazingly useful tool in our efforts to improve the optimization of images on the web and make it easier for developers to do the right thing without having to think too much. The Squoosh team have done amazing work recently to create a CLI that enables you to easily compress and resize images straight from the command line, this opens up the ability to integrate image optimzations in to your build process on any platform that has the ability to run Web Assembly.

This is all great, but the CLI is not my web app. I really needed an API version of Squoosh.

In the past, I’ve worked on getting FFMPEG CLI running inside web apps, so that gave me the idea that it might also be possible to get the Squoosh CLI running in a web page too. Squoosh’s CLI had all the options I needed, so if I could get it work as an API I would be very happy.

Squoosh’s code is well structured, so it wasn’t too hard to find the code that dealt with the CLI and a quick scan through it showeded that there were only a couple of places where it relied on Node and so I would have the choice of stripping it out, or polyfilling Node API’s in the browser.

Thankfully, after a couple of hours hacking (and a sleep), I managed to get it working. I won’t go into it too much detail of all the changes, but the summary is:

  • The Web Worker code in Node had to be extracted to it’s own file.
  • WASM Bindings for Web had to be generated because they were for node.
  • Replaced all of Node’s File handling with Web API’s.
  • Expose the run method as the entry point to the API.

Once it was all built, all I had to do was copy the assets into my code (there’s a lot of WASM files) and call it as follows: await run({ files: [this._file], ...options });

This solution worked well for my demo app, but it’s not official and is already lagging behind Squoosh’s main-line branch. I think that a dedicated, browser-friendly API will open up a lot of opportunities, for example it would allow: any CMS to integrate image compression as soon as the client tries to upload an image; Tools such as Lighthouse and Page Speed insights could integrate it so the instant they say you are doing your images wrong, they also give you the optimal solution; and an ecosystem of image optimizers could be built as web apps.

If you want to integrate Squoosh in to your web app, then go and ping the team and let them know they need a Browser-side API. Tell them I sent you!


Print Share Comment Cite Upload Translate
APA
Paul Kinlan | Sciencx (2024-03-28T20:02:52+00:00) » The unofficial way to embed Squoosh into your web app.. Retrieved from https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/.
MLA
" » The unofficial way to embed Squoosh into your web app.." Paul Kinlan | Sciencx - Friday May 14, 2021, https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/
HARVARD
Paul Kinlan | Sciencx Friday May 14, 2021 » The unofficial way to embed Squoosh into your web app.., viewed 2024-03-28T20:02:52+00:00,<https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/>
VANCOUVER
Paul Kinlan | Sciencx - » The unofficial way to embed Squoosh into your web app.. [Internet]. [Accessed 2024-03-28T20:02:52+00:00]. Available from: https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/
CHICAGO
" » The unofficial way to embed Squoosh into your web app.." Paul Kinlan | Sciencx - Accessed 2024-03-28T20:02:52+00:00. https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/
IEEE
" » The unofficial way to embed Squoosh into your web app.." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/. [Accessed: 2024-03-28T20:02:52+00:00]
rf:citation
» The unofficial way to embed Squoosh into your web app. | Paul Kinlan | Sciencx | https://www.scien.cx/2021/05/14/the-unofficial-way-to-embed-squoosh-into-your-web-app/ | 2024-03-28T20:02:52+00:00
https://github.com/addpipe/simple-recorderjs-demo