Online Notepad That Opens Instantly
A text box that loads in one page request and gets out of the way. By default nothing is written anywhere — the note lives in this tab and dies with it. Tick the box below the pad if you want the browser to keep it for next time.
Off by default. Turn it on and the text is written to this browser's local storage on this device only — not encrypted, not synced, and readable by anyone who uses this computer profile. Turning it off again deletes the stored copy immediately.
What is actually running here
A text box, a word count and a few dozen lines of JavaScript. There is no editor framework, no document model and no network request after the page loads, which is why it opens faster than most note apps manage to show a splash screen. Everything you type stays in the tab's memory until you decide otherwise.
That design has one consequence worth being blunt about: by default, closing this tab destroys the note. The browser asks you to confirm if you have typed more than a few words, but a crash, a phone killing the tab to reclaim memory, or an accidental reload will take the text with it. If the note matters for longer than the next ten minutes, turn saving on or download it.
What "keep this note" really does
Ticking the box writes your text into localStorage, a small key-value store the browser keeps per site. Some specifics, because "saved" means less than people assume:
- It is tied to one browser on one device. Not your account, not your other laptop. Chrome and Firefox on the same machine each have their own copy, and so does a separate profile in the same browser.
- It is plain text. Nothing here is encrypted. Anyone who can open this page on this computer can read the note, and it sits in a database file on disk that a determined person can read without a browser at all. Do not keep passwords or anything confidential in it.
- The space is small. Browsers typically allow around 5 MB per site for local storage. That is an enormous amount of prose — roughly a million words — but if you ever hit it, the save fails and the tool tells you rather than pretending.
- The browser can delete it. Clearing browsing data wipes it. Private and incognito windows throw it away when the window closes. Safari is the harshest case: its tracking prevention removes script-written storage for sites you have not visited in seven days, so a note left alone for a fortnight can simply be gone.
- Two tabs will fight. Open this page twice with saving on, type in both, and whichever tab saved last wins. There is no merge and no warning.
Turning the box off deletes the stored copy straight away. That is the only delete this tool performs, and it does not touch anything else the site keeps, such as your light or dark theme choice.
Plain text, and why that is the point
There is no bold, no bullets and no headings here, which makes the pad genuinely useful for one thing rich editors are bad at: stripping formatting. Paste something copied out of a Word document, an email or a web page, and what lands is the text without the fonts, colours, tracked changes and invisible span tags that would otherwise follow it into wherever you paste next. Copy it back out and it is clean.
Downloads are UTF-8 encoded with Unix line endings, which is the modern default and what every code editor, every Mac and every Linux box expects. Windows Notepad learned to read those files properly in a 2018 update, so a .txt from here opens correctly on a current Windows machine. Feed it to something genuinely old — a legacy business application, a device configuration tool — and you may see the whole note run together as one line. That is the file being fine and the reader being ancient.
The features it does not have
One note, not many: there are no tabs, folders or filenames, so a second note means a second document you keep somewhere else. No version history, so once you clear the pad the previous text is unrecoverable — the browser's own undo works while the page is open and is wiped by a reload. No sync, no sharing, no collaboration, no markdown preview, no search-and-replace. If you want those, you want a notes app, and this is not pretending to be one.
It is also not offline-capable in the strict sense. Once the page has loaded you can type with no connection at all, but reopening the URL from scratch while offline will fail, because there is no service worker caching the page. A downloaded .txt is the thing that survives everything.
Frequently asked questions
Will my note still be here tomorrow?
Only if you ticked the box to keep it. Then it is stored in this browser on this device and survives reloads and restarts, but not clearing your browsing data, not a private window closing, and not Safari deleting site storage after seven days without a visit.
Can anyone else read what I type?
It is never sent anywhere, so no one on the network sees it. The honest caveat is local: if you turn saving on, the text sits unencrypted in this browser profile, and anyone using this computer can open the page and read it.
How do I get the text out?
Download .txt gives you a UTF-8 file named with today’s date, and Copy all puts the whole note on your clipboard. Both work regardless of whether saving is switched on.
Why does the browser warn me when I close the tab?
Because with saving off there is nothing to come back to. The prompt only appears when the note is longer than about twenty characters and nothing is storing it. Turn saving on and the warning stops.
Can I keep more than one note?
Not in one browser — there is a single slot and a second note would overwrite the first. Download the finished one as a .txt and clear the pad, or open the page in a different browser, which gets its own separate storage.
Last updated September 19, 2026