Cloud note apps trade ownership for convenience. What local-first software means, the real risks of cloud-only notes, and how offline-first apps keep data yours.
· Privacy & Ownership · 7 min read
Here is a question worth sitting with for a moment: if the company behind your note app shut down next month, what would happen to ten years of your notes?
For most people the honest answer is "I'd scramble to export something before the servers went dark, and lose the rest." That answer is a design decision — one made by the app, not by you. Cloud-first note apps store the canonical copy of your thinking on their infrastructure and lend you access to it. Local-first software inverts that: the canonical copy lives on your device, and everything else — sync, backup, collaboration — is a service layered on top of data you already own.
The term comes from a 2019 essay by the research lab Ink & Switch, which laid out a simple test in seven ideals. The short version: your data is on your device, the app works fully offline, it stays fast because nothing waits on a network round-trip, and it keeps working — forever — even if every server involved disappears. Sync between devices is a feature, not a dependency.
Note what local-first is not:
None of these are hypothetical; each has happened to real products with real users' notes in them.
Local-first is a set of trade-offs, not a free lunch, and it is worth naming the costs. Responsibility moves to you: if your only copy is on one laptop and the laptop dies, there is no support ticket that brings it back — so backups (an export, a copy in your own cloud drive) stop being optional. Multi-device sync is harder to engineer without a central server, which is why some local-first apps sync peer-to-peer and use conflict-resolution machinery like vector clocks or CRDTs under the hood. And real-time collaboration with dozens of people remains something centralized services genuinely do better. For shared team documents, cloud tools earn their keep; for a personal knowledge base — an asset measured in decades — the trade cuts decisively the other way.
Evaluating any note app for data ownership comes down to five questions:
NNote was built as a yes to all five, so it makes a concrete illustration of the architecture. Notes live in your browser's local database (IndexedDB) and the app is an installable PWA that runs entirely offline. There is no account because there is no server to hold one — the site itself is static files. When you want notes on a second device, the two devices connect directly over an encrypted WebRTC channel and merge changes with vector clocks; optional Google Drive backup writes to your own Drive's app storage, not to anything NNote operates. And everything exports to plain Markdown whenever you want out. The Privacy Policy is unusually short for the simple reason that there is almost no data flow to describe.
Whether or not NNote is your tool, the principle travels: your notes are one of the few digital assets you are likely to still want in thirty years. Put them somewhere whose survival does not depend on someone else's business model — and if you are building a long-term knowledge base, make ownership the first feature you evaluate, not the last.
Try it in practice: NNote is a free, offline-first outliner — nested notes, backlinks, tags, and peer-to-peer sync, with no account required. Start writing in your browser, or read the User Guide first.