jamuny.editor

Online Notepad — your text never leaves your browser

Ln 1, Col 10 chars, 0 wordsUTF-8

Every other online notepad uploads what you type to a server. This one does not. Your documents are stored by your own browser, autosaved as you type, and still there when you come back, even after you close the tab. Nothing is transmitted anywhere, so there is no account to create and nothing to delete later.

What "local-first" means

Most online text tools send whatever you paste to a server, run the work there, and send a result back. Your words sit in someone else's logs, backups and databases, and you have to trust a privacy policy.

Local-first means the opposite: the whole tool is downloaded to your browser and runs on your own device. Nothing you type is transmitted anywhere: not to us, not to anyone. There is no server that could receive it, which is a stronger guarantee than a promise not to look.

Three consequences worth knowing:

You do not have to take that on trust. Open your browser's developer tools, watch the network panel, and type: nothing appears in it.The network's verify page walks through the same check on every Jamuny tool.

How to use it

  1. Start typing. The editor is already focused and empty. Nothing needs setting up, and there is no account step.
  2. Let it save itself. Around half a second after you stop typing, the document is written to your browser's own storage. There is no Save button to forget.
  3. Open a second tab. Press the + in the tab strip for a separate document. Each keeps its own name, cursor position and undo history.
  4. Take it with you. Export .txt writes a copy to your downloads. In Chrome and Edge, Save writes straight back to a file you opened.

Where your notes actually live

Documents are stored in IndexedDB, a database built into your browser, on this device only. That is what makes the editor work offline and what makes it private: there is no server holding a copy, so there is no account to create, no privacy policy that matters, and nothing to delete later.

The trade-off is worth stating plainly. Because storage is per-browser and per-device, notes written here will not appear on your phone, and clearing site data in your browser settings removes them permanently. If a document matters, export it. The editor is a scratchpad you can trust with a password reset code, not a sync service.

What it does that a plain textarea does not

Multiple documents in tabs, each independently named and renamed. Find and replace with regular expressions, whole-word matching, and the option to restrict a replacement to just the text you have selected. Column selection by holding Alt while dragging, which is the feature people miss most when they move off Notepad++.

It also reads and writes real files. In Chromium browsers the File System Access API lets Save overwrite the file you opened, so the editor behaves like a desktop application rather than a download machine. Firefox and Safari have not shipped that API, so there opening uploads a copy and saving downloads one.

Syntax highlighting without choosing a language

Paste JSON, JavaScript, Python, CSS, HTML, XML or Markdown and the editor recognises it from the content and colours it accordingly. Detection is deliberately conservative: it demands structural evidence rather than a single suggestive word, because colouring a shopping list as code is worse than leaving it plain.

If it guesses wrong, the language picker in the status bar overrides it, and your choice sticks to that document rather than resetting on the next keystroke.

Questions

Where are my notes actually stored?

In your browser's IndexedDB storage, on this device only. They are never uploaded. Clearing your browser data for this site deletes them permanently, so export anything you need to keep.

Will my text survive closing the tab?

Yes. Edits autosave roughly half a second after you stop typing, and every document reopens automatically on your next visit. The one thing that removes them is clearing site data in your browser settings.

Can I open and save real files from my computer?

In Chrome and Edge you can open a file and save changes straight back to it. Firefox and Safari do not support that browser API, so there you open by uploading a copy and save by downloading one.

How large a file can I open here?

Comfortably up to about 20 MB. Past that the editor warns you, and it refuses files over 50 MB: a browser tab cannot hold a file that size without freezing.