A full Preact app rendering in a Web Worker 
Have you ever wondered if you could take advantage of Web Workers to render a Virtual DOM app in a background thread? This repo contains the source code of a demo messaging app that does just that!
β‘οΈ A complete Preact app running entirely within a Web Worker.
π For a high level overview of the approach, see How It Works.
π This means your UI stays interactive at 60FPS, even if your application grinds to a halt in the background.
π₯ View Demoπ₯
How It Works
The implementation is split into renderer/dom.js and renderer/worker.js. These modules live outside and inside the Worker (respectively), and communicate with eachother asynchronously via postMessage().
The app's code, components, libraries and DOM are all isolated in a single Worker (background thread). This means even Preact's diff algorithm and component instantiation is done in the worker. The main (UI) thread simply applies a stream of serialized DOM change descriptions (MutationRecords), and proxies events back to the Worker to be handled off the main thread.
As an optimization, when serializing DOM Elements to be published up to the UI thread, any previously-sent Elements are replaced with IDs. These are correlated through a mapping retained on both sides of the thread boundary.
Quick-Start Guide
Installation
1. Clone this repo:
git clone --depth 1 https://github.com/developit/preact-worker-demo.git
cd preact-worker-demo2. Install the dependencies:
npm installYou're done installing! Now let's get started developing.
Development Workflow
3. Start a live-reload development server:
PORT=8080 npm run dev4. Generate a production build in ./build:
npm run buildYou can now deploy the contents of the
builddirectory to production!Surge.sh Example:
surge ./build -d my-app.surge.sh
5. Start local production server with superstatic:
npm startThis is to simulate a production (CDN) server with gzip. It just serves up the contents of
./build.
License
MIT

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

