Jotura

Guides / Comparisons / 2026-08-30

Jotura vs Standard Notes: two takes on private, encrypted notes

Jotura vs Standard Notes, compared honestly: where your notes live, how encryption differs, iOS and open source, and which app fits your markdown workflow.

Both apps take privacy seriously, and they solve it in opposite ways. Standard Notes keeps your notes inside its own end-to-end encrypted store, syncs them across macOS, Windows, Linux, iOS, Android, and the browser, and is open source. Jotura keeps your notes as ordinary .md files in a folder on your disk. It encrypts them when they leave your machine for its optional paid sync, and it ships a command line tool that AI coding agents can use.

So the choice comes down to one question: do you want an encrypted vault you sign into, or a folder of markdown files you can open with anything? Jotura has no iOS app and it is closed source. If either of those decides it for you, Standard Notes is your answer and the rest of this page is detail.

The short comparison

JoturaStandard Notes
Storage on diskPlain .md files in a normal folderThe app’s own encrypted store
PlatformsMac, Windows, Linux, AndroidMac, Windows, Linux, iOS, Android, web
Source codeClosed sourceOpen source
Self-hostingNot availableSupported for the sync server
Encrypted syncPaid, £4/month or £40/year, no free trialIncluded on the free plan
Editing modelWYSIWYG with a source toggle, real table editorPlaintext on the free plan; markdown and rich text through the Super editor on a paid plan
Agent toolingFirst-party jotura command line toolNone built in

Standard Notes prices move, so check their plans page rather than a number in an article like this one. The free tier is genuinely useful: unlimited notes and end-to-end encrypted sync across your devices, at no cost. It does not include the Super editor, so markdown and rich text sit behind a paid plan, along with file attachments and extended note history.

Where your notes actually sit

In Standard Notes, a note is a record in an encrypted database. That design is what lets the app encrypt everything before it touches the network, on every plan. You can export your notes as files when you want them elsewhere.

In Jotura, the file is the note. Your vault is an ordinary folder, and each note is a .md file. You can open it in a text editor, search it from the command line with tools like grep, or commit it to version control. Saving a file you did not change writes back the exact same bytes, so nothing gets silently reformatted.

If you already keep an Obsidian vault, Jotura opens that folder as it is, with no import step.

Files on disk are only as private as the disk they sit on. Jotura leans on your operating system’s full disk encryption at rest, and adds its own encryption when files are pushed to sync. Standard Notes protects note contents locally too, which is the stronger default if you share a machine or lose a laptop.

Where Standard Notes wins

Standard Notes has an iPhone and iPad app. Jotura does not, and no amount of feature comparison changes that. If your notes need to be on iOS, this is the end of the conversation.

There is also a web client, so a Standard Notes user reaches their notes from a locked-down work machine or a borrowed laptop. Jotura has no browser access at all.

The code is open source, so you can read the client and the server for yourself. Jotura is closed source, which means you are trusting a description of what it does rather than the code itself. For some readers that alone settles it.

You can also run the sync server yourself, so your encrypted data lives on hardware you control. Jotura Sync runs only on Jotura’s servers.

Encrypted sync is free. Standard Notes syncs across your devices, encrypted end to end, without payment. Jotura Sync is £4 a month or £40 a year, with no free trial. If cost decides it, Standard Notes wins outright.

Where Jotura wins, and what it costs you

The editing surface does more. You get WYSIWYG editing (what you see is what you get) with a source toggle, and a real table editor instead of hand-aligned pipes. Wikilinks and backlinks, daily notes, and a vault-wide task view built from ordinary checklist markdown all ship in the box. Drop in a PDF, Word file, or spreadsheet and Jotura builds a searchable markdown mirror, so it turns up in results.

Search is fast because the core is written in Rust and runs inside Tauri 2, a toolkit for building desktop apps in native code. Keyword search across 10,000 notes takes about 8 milliseconds in a release build.

Semantic search finds notes by meaning rather than exact words. You turn it on in desktop Settings, and it downloads an embedding model once. After that it runs on your machine, with no API key. We cover it in semantic search your notes offline.

Here is what that costs you. There are no plugins, no graph view, and no publish-to-web, so what ships is what you get. The app itself is free, with no telemetry and no tracking, but sync and sharing are paid.

The agent angle

Jotura ships a first-party command line tool called jotura inside every desktop installer. It gives an AI coding agent the same operations the app has, over the same plain files. An agent reads a note and gets its hash, a short fingerprint of the file’s contents, then writes only if that fingerprint still matches. The tool writes atomically, replacements must match uniquely by default, and body edits never touch a note’s YAML frontmatter, the settings block at the top of a file.

jotura context "refactor the billing service"
jotura memory recall "database choice"
jotura memory log --kind decision --title "Chose Postgres over SQLite for billing"

HASH=$(jotura read "Projects/Billing.md" --json | jq -r .hash)
jotura edit "Projects/Billing.md" --replace "Postgres 15" --with "Postgres 16" --if-hash "$HASH"

Agent configuration lives in an Agents/ folder in the vault, and jotura agents sync writes it out to where Claude Code, Codex, Gemini, and Copilot each expect it. The full command reference is on the CLI page.

Standard Notes ships no first-party agent tool. Its code is open and its server can be self-hosted, so building something is possible, but nothing equivalent comes in the box.

The agent layer came later. Adam Richardson built Jotura first as a private, fast notes app with sharing, for his own use. He added the agent tooling on foundations that already existed.

How the encryption compares

Both apps encrypt on your device before anything is uploaded, and neither server can read your note text. The scope differs.

Jotura Sync derives a master key from your passphrase using Argon2id, a password hashing function built to be slow and expensive to attack. Every file gets its own key, and file paths become HMAC identifiers, one-way codes that let the server match files without ever seeing a filename or folder name. Recovery uses a BIP39 phrase, the word list format crypto wallets use, and you must keep it, because nobody can reset it for you.

Sharing is encrypted too. You can share a folder or a single note, with editor and viewer roles, and concurrent edits merge automatically. Jotura Sync keeps three years of version history, with attribution. Both sides of a share need a Sync subscription.

For the mechanics, read how end-to-end encrypted note sync works and the security page.

Which one to choose

Choose Standard Notes if you need iOS or browser access, want open source code you can inspect, want to self-host, or want encrypted sync without a subscription. None of those are consolation prizes.

Choose Jotura if you want plain files that outlive the app that wrote them. Choose it for a faster, more structured desktop editor. Choose it if you want AI agents writing into your notes through a tool built for that. You can download it free from the download page and point it at a folder you already have.

A tiebreaker: ask what should happen if the app disappears tomorrow. If the answer is a folder of markdown files on your disk, that is Jotura. If you would rather never think about files, Standard Notes fits better.

Download Jotura

Free. Plain markdown files, yours forever.