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’v…


This content originally appeared on DEV Community and was authored by Dustin Brett

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 });
}

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" });

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 ported to run in the browser via Emscripten. 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.


This content originally appeared on DEV Community and was authored by Dustin Brett


Print Share Comment Cite Upload Translate Updates
APA

Dustin Brett | Sciencx (2022-02-10T05:55:20+00:00) Browsers can do that?. Retrieved from https://www.scien.cx/2022/02/10/browsers-can-do-that/

MLA
" » Browsers can do that?." Dustin Brett | Sciencx - Thursday February 10, 2022, https://www.scien.cx/2022/02/10/browsers-can-do-that/
HARVARD
Dustin Brett | Sciencx Thursday February 10, 2022 » Browsers can do that?., viewed ,<https://www.scien.cx/2022/02/10/browsers-can-do-that/>
VANCOUVER
Dustin Brett | Sciencx - » Browsers can do that?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/02/10/browsers-can-do-that/
CHICAGO
" » Browsers can do that?." Dustin Brett | Sciencx - Accessed . https://www.scien.cx/2022/02/10/browsers-can-do-that/
IEEE
" » Browsers can do that?." Dustin Brett | Sciencx [Online]. Available: https://www.scien.cx/2022/02/10/browsers-can-do-that/. [Accessed: ]
rf:citation
» Browsers can do that? | Dustin Brett | Sciencx | https://www.scien.cx/2022/02/10/browsers-can-do-that/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.