Simple text editor has over 15k monthly users

  • You know it's fairly trivial to do this in html with a few lines of code... HTML Editable, save to local storage; pretty handy stuff.

    Has anyone built a substantial one like this for their own use?

  • Here's a free minimal text editor I wrote: https://www.writepad.xyz (or https://writepad.netlify.com)

    Features:

    - Works offline

    - Autosaves to local storage

    - Downloadable as PWA (Progressive Web App) on mobile

    - Dark mode

  • That’s not the world’s simplest text editor.

    This is:

      data:text/html, <html contenteditable>
    
    That’s a working URL. Paste it into your browser. Bookmark it for later.

    No distracting GUI. No superfluous features like “save” or “open”. Does not track active user statistics. Works offline.

  • I use https://bigtextbox.com/ a lot, as a nicer way to leave a note in the browser than doing a Google search.

  • Interesting idea, but realised that I can't use undo/redo after pressing Tab (at least on FireFox); it immediately made the experience awkward and more complicated.

  • As I'm sitting here with my pencil, paper, and eraser ( some pencils come with erasers! ), I wonder what could be easier than this kind of text editor.

  • Huh. Pretty cool. I can't set a filename on firefox, but I like that the style is bigger than the actual markup.

  • "World's simplest text editor" sends 13 requests to a web server, including one to world's leading spyware company. No, thank you.

  • World's simplest text editor is:

      $ cat > edited.txt
    
    Enter text, hit ^D when you're done.

    If you pray hard enough, Google will find a way to let you do that in a browser, so someone can count MAUs.

  • I use this site for utilising the browsers spell checker :)

  • Wow! How do you know it has over 15k monthly users?

  • Now... is it ramen profitable?

  • How does the author make any money... I see no ads

  • undefined

  • Given the amount of unused space in the toolbar I believe you can safely add some handy features without making it worse in any sense so even more people would appreciate it. I'd add regex search&replace (with support to add/replace newline and tab symbols) and codepage conversion (including support for decrypting wrong codepage text and encoding/decoding the selected text as a URL replacing non-latin symbols with their codes and vice versa).