DEV Community

Cover image for Browsers can do that?
Dustin Brett
Dustin Brett

Posted on

Browsers can do that?

For the past few years since I began my endeavor to make a web desktop environment I've become fascinated to know what is possible with a modern web browser and where the limits are. Throughout that time I've been repeatedly surprised with how far we've come and what features have made it into some of todays browsers.

Here is my list of the amazing things browsers can do!

Local Directory Access

Not to be confused with the File and Directory Entries API, this rather new and still in development spec is called the File System Access API and allows "reading files, writing or saving files, and access to directory structure". It's currently supported in Chromium browsers which includes Edge, Chrome & Opera. Also as of Dec 2021 with 15.2 we now have partial support for this API in Safari. And as of last week the spec has been partially moved to WHATWG which could be considered progress towards better all around browser support going forward.

const dirHandle = await window.showDirectoryPicker();

for await (const [key, value] of dirHandle.entries()) {
    console.log({ key, value });
}
Enter fullscreen mode Exit fullscreen mode

Multithreading

I've recently been experimenting more with Web Workers and I've found they can have a huge improvement in performance depending on what kind of workloads you are able to offload to them. A worker can be created by referencing a .js file but the method I've preferred involves converting an function directly into a string which the worker can load.

One use case that I've found improved loading time greatly was moving my three.js animated 3D background to a web worker by passing the canvas to the worker via OffscreenCanvas which is currently not available on Firefox or Safari, so the traditional main thread rendering method still needs to be a fallback at this point.

const workerFunction = () =>
  console.log(`typeof window === ${typeof window}`);
const workerUrl = URL.createObjectURL(
  new Blob(["(", workerFunction.toString(), ")()"], {
    type: "application/javascript",
  })
);

new Worker(workerUrl, { name: "ExampleWorker" });
Enter fullscreen mode Exit fullscreen mode

Emulation, Manipulation & Compression

Even before WebAssembly was popular, people were already porting some pretty cool stuff to .wasm which can run in the browser with the help of a .js file to load it typically. This has made it much easier to convert existing codebases from languages such as C, C++ & Rust to run in the browser.

For example, although Adobe Flash has lost support in browsers, you can now use Ruffle which is written in Rust and has been compiled to run in the browser. Another very cool example is the x86 emulator known as v86 which is written in C & Rust and has the ability to run various operating systems such as Linux from within the browser.

Also often realized via the power of WebAssembly, the ability to convert/edit media formats is not the sole domain of the backend. Most of these operations could in theory happen in the frontend.

When it comes to audio/video the trusted tool that is often used on the desktop is FFmpeg and this too has been ported to run in the browser, although if you want multithreading you will need to make sure you have special CORS headers enabled to gain access to the SharedArrayBuffer. For images on desktop there is the popular ImageMagick which indeed also has been ported.

Another operation that is sometimes desired is to take several files and give the user a compressed file. There are actually a surprisingly large amount (jszip, pako) of client side options here, but my favorite so far when it comes to speed, size and working with .zip has been fflate. But if you'd like to work with other formats, there are also libraries to decompress 7-Zip, RAR & TAR.

The Future in Action

Thanks for checking out this article where I go over the browser technologies that I've been most excited about. If you would like to try out some of these technologies, I implement them all within my website. I also stream about my web/coding adventures on YouTube if you'd like to check out my channel.

Latest comments (6)

Collapse
 
willnode profile image
Wildan Mubarok

With those capabilities no wonder Chrome eats memory way higher than the OS itself, but well it's promising to future opportunities.

Collapse
 
dustinbrett profile image
Dustin Brett

All your RAM are belong to Chrome

Collapse
 
bahmanworld profile image
Bahman World

Can what? 😅

Collapse
 
dustinbrett profile image
Dustin Brett

Haha, stay tuned for part 2... :-)

Collapse
 
bahmanworld profile image
Bahman World

I'm still waiting 😄

Thread Thread
 
dustinbrett profile image
Dustin Brett

Haha, I looked into it and it turns out that was all they could do. :-)