DEV Community

RB
RB

Posted on

How I cut my AWS bill to $0 by moving my backend to the browser (WebAssembly)

A few months ago, I was mapping out the architecture for a heavy file-processing application. The traditional SaaS playbook was obvious:

  1. User uploads a heavy file.
  2. Store it in an AWS S3 bucket.
  3. Spin up an EC2 instance or AWS Lambda function to process it.
  4. Send the result back to the client. But when I ran the numbers on processing thousands of 50MB files a day, the AWS bandwidth and compute costs were terrifying. Worse, uploading user files to my servers introduced massive privacy and GDPR liabilities. I realized the traditional client-server model was the wrong approach. Modern browsers are incredibly powerful machines. Why was I paying Amazon to process files when the user has an M1 Mac or a Snapdragon processor sitting right in front of them? I decided to ditch the backend entirely and move the heavy lifting to the client using WebAssembly (WASM). Here is how I did it, and how you can apply this architecture to your own apps. --- ## The Paradigm Shift: Client-Side Compute If you haven't played with WebAssembly yet, it fundamentally changes what you can build on the web. WASM allows you to compile languages like C, C++, and Rust into a binary format that runs directly inside the browser at near-native speeds. Instead of sending data to the server, you send the server logic to the data. ### The Use Case: PDF Pro To prove this architecture worked at scale, I built PDF Pro—a suite of tools that compress, merge, and edit massive PDF files. Traditionally, PDF manipulation requires heavy server-side libraries like Ghostscript. But by bridging JavaScript with WASM-compiled PDF engines, I was able to invert the entire flow. Here is the exact architecture I used to process files entirely in the user's RAM: ### 1. Intercepting the File Locally Instead of wrapping the file input in a <form action="/upload">, we intercept the file locally using the File API.

`document.getElementById('fileInput').addEventListener('change', async (event) => {
const file = event.target.files[0];

// Load the file into the browser's memory (RAM)
const arrayBuffer = await file.arrayBuffer();

// Pass the buffer to the WASM engine instead of an API
processFileLocally(arrayBuffer);
});`

2. Processing in the Sandbox

Once the file is an ArrayBuffer in the browser's memory, we pass it to the WASM engine.
For PDF Pro, the WASM engine tears down the binary structure of the document, strips out metadata, and uses the browser's native <canvas> API to intelligently downsample heavy images.
Because WASM runs at near-native speeds, a 20MB file that would normally take 15 seconds to upload to an AWS server is processed locally in about 1.5 seconds.

3. Returning the Result

Once the WASM engine finishes processing, it generates a new binary Blob. We use URL.createObjectURL() to instantly trigger a download back to the user's hard drive.
`javascript
function triggerLocalDownload(processedBytes, filename) {
const blob = new Blob([processedBytes], { type: 'application/pdf' });
const url = URL.createObjectURL(blob);

const a = document.createElement('a');
a.href = url;
a.download = optimized_${filename};
a.click();

URL.revokeObjectURL(url); // Clean up memory
}

`

The 3 Massive Benefits of this Architecture

If you are building a tool that handles images, video, audio, or document processing, you should strongly consider moving it to the client.

  1. Infinite Scaling for $0: Because the compute happens on the user's device, my server costs are identical whether I have 10 users or 100,000 users. I only pay for static frontend hosting (Vercel/Netlify).
  2. Zero Privacy Liability: I don't have to worry about hackers breaching my S3 buckets or GDPR compliance, because I never receive the user's data. It never leaves their laptop.
  3. Instant UX: There are no loading bars while a user waits for a 50MB file to upload over a slow 3G connection. The processing starts instantly. ## See it in action If you want to see how fast this architecture actually feels in production, you can test the live app here: PDF Pro Local Compressor. You can literally load the page, turn off your Wi-Fi, and it will still process your files flawlessly. I also open-sourced the underlying WASM architecture on GitHub if you want to poke around the code: GitHub Repo. Have you started using WebAssembly in your side projects yet? I'd love to hear what use-cases you think this client-side architecture fits best!

Top comments (0)