How it works
Your text is automatically saved to your browser's local storage every 500ms as you type. It persists between visits. No account needed — your notes stay on your device.
Online Notepad — Free Notes Editor with Auto-Save (Word/Char Counter)
Type and your text saves to your browser's localStorage automatically — no Save button, no signup, no cloud. Close the tab and reopen the page on the same browser and your notes are still there. A small live counter shows words, characters, and lines as you type, a Copy button puts everything on your clipboard, and a Download button exports the current contents as a .txt file. Useful for jotting down a quick idea you don't want to start a Notion page for, drafting a Slack reply you'd rather compose without distractions, prepping a tweet, or capturing a meeting note when you don't have your usual editor open.
About this tool
Saves are debounced 500 ms — every keystroke resets the timer, then 500 ms after you stop typing the current text is written to `localStorage` under the key `allyouneed-notepad`. That single round-trip is fast enough to feel instant, low enough to avoid hammering the storage layer on a fast typist, and atomic enough that you never end up with a partial save. The page intentionally checks for storage failures (private browsing in Safari throws on `setItem`, Firefox in private mode caps storage to 5MB and throws on overflow) and surfaces a banner instead of silently losing your work — most online notepads claim "saved" without verifying, which makes you trust them right up to the moment your text vanishes. The localStorage scope is per-origin and per-browser, so notes don't sync across devices or browsers — that's the trade-off for zero accounts and zero server. Use cases: an always-on scratch buffer for the current day, drafting a tweet without distractions, capturing meeting notes when your usual editor is closed, prepping a Slack reply you want to re-read before sending, or saving a paste-back-later snippet.
- Auto-save to localStorage with 500 ms debounce — no Save button needed
- Explicit storage-failure detection (Safari private mode, Firefox quota)
- Live word, character, and line counters
- Download current contents as a .txt file
- Copy entire note to clipboard with one click
- Persists between browser sessions and tab closes
- Per-origin and per-browser scope — no cross-device sync (and no server)
- Last-saved timestamp displayed for confidence
- Clear button wipes both the textarea and the localStorage entry
- Useful for daily scratch buffer, tweet drafts, meeting notes, Slack replies
Free. No signup. Your inputs stay in your browser. Ads via Google AdSense (consent required).