Tools / News / An Open-Source WebAssembly Office Suite Now Edits Documents Entirely in the Browser
Press

An Open-Source WebAssembly Office Suite Now Edits Documents Entirely in the Browser

· VaultTools

ZIZIYI Office launched in early 2026 as a zero-upload alternative to cloud office tools, running ONLYOFFICE's document engines as WebAssembly inside the browser. It supports Word, Excel, and PowerPoint with no server contact and no account required.

VaultTools · March 27, 2026

A black laptop computer beside a wireless mouse on a clean desk, representing minimal local-first computing. Photo by Andrew M on Unsplash

Table of Contents


What It Is

ZIZIYI Office (office.ziziyi.com) is an open-source, browser-based office suite that supports editing Word (.docx), Excel (.xlsx), and PowerPoint (.pptx) files. Released publicly in January 2026 by developer baotlake and licensed under the AGPL v3, it positions itself as a privacy-first alternative to Google Docs and Microsoft 365 Online. No account is required. No files leave the device.

How It Works

The application compiles ONLYOFFICE’s C++ document engines to WebAssembly using the x2t converter originally developed by CryptPad. Those Wasm modules run inside the browser’s sandbox with no ability to initiate network connections. Files are loaded from the user’s disk, processed in memory, and stored via IndexedDB, the browser’s built-in local key-value store.

The frontend is built with Next.js 15 and deployed to Cloudflare Pages. Cloud providers (Google Drive, Dropbox, OneDrive) can be used as a file source through the Uppy library, but only for reading. Nothing is written back to a remote location unless the user explicitly chooses to save there.

What the Privacy Claim Actually Means

WebAssembly runs in a sandboxed execution environment. A Wasm module cannot initiate HTTP requests, read the local filesystem arbitrarily, or access memory outside its allocated region. ZIZIYI Office’s document engines execute under these constraints by design, not by policy. The operator cannot intercept documents being edited because the code that processes them never reaches a server they control.

This is the same architectural guarantee that underpins browser-based tools like VaultTools: client-side processing is not a marketing claim but a structural property of how WebAssembly runs.

Adoption and Reception

The GitHub repository (github.com/baotlake/office-website) reached 876 stars by late March 2026, fewer than three months after creation. The project was featured in the widely-read Chinese developer newsletter Ruanyf Weekly in January 2026, which drove initial discovery. Coverage expanded in English-language developer outlets in March 2026.

The Bigger Picture

ZIZIYI Office is one of several projects in 2025 and 2026 that demonstrate a shift in expectations. Features that once required server infrastructure, complex document rendering, format conversion, multi-page layout, are now shipping as Wasm modules that run fully offline in any modern browser. The performance gap between server and browser has narrowed to the point where the trade-off is real.

For privacy-sensitive use cases, editing a contract, preparing a legal brief, reviewing financial projections, the choice between a cloud office tool that retains copies and a local tool that does not is no longer a choice between capability and privacy. It is a choice between architectures.


Sources