2 min read
Textbox

Repository - aynp/textbox

Simple full page textbox to write stuff down. Any path you visit acts as its own independent, persistent textbox — content is saved to localStorage automatically and restored when you revisit the same path.

For example:

How it works

  • Visiting any path serves a persistent textbox via a 404.html catch-all on GitHub Pages.
  • The page uses window.location.pathname to scope localStorage, so each path has its own saved content.
  • Changes are debounced and flushed on page close to prevent data loss.