Skip to content
Back to posts

Browser Notepad Explained — A Beginner Guide

A browser notepad is a writing tool that runs entirely in your web browser. There is no app to install, no account to create and no server to upload to. This guide explains how it works and why it has become a popular alternative to heavier notes apps.

The technology in plain English

Modern browsers ship with two key APIs that make a browser notepad possible:

  • localStorage — a key/value database scoped to one website, stored on your device
  • contenteditable — an attribute that turns any element into a rich-text editor

Combine the two and you have a notepad that loads instantly and remembers your work between visits.

What works offline

After the first load, the page assets are cached. As long as the cache is fresh, you can open the URL with no internet and continue editing your existing notes. Auto save still works because it writes to local storage, not to a server.

Privacy

Local storage is scoped to the domain. Other websites cannot read your notes. The website itself does not see your text either, because nothing is sent to a server. Combine this with HTTPS and you have a strong privacy story.

Limits

  • 5 to 10 MB per origin in most browsers
  • Storage may be evicted under pressure
  • Clearing site data wipes everything

How to back up

The right approach is JSON export. A free online notepad with a one-click export gives you a portable file you can keep in any folder.

When a browser notepad is right for you

If you value speed, privacy and zero-friction capture, the browser notepad is the simplest choice. If your work depends on automatic cross-device sync and complex organisational features, you may need a more traditional notes app.

v2.0