Show HN: ASCII Tree Editor

18 novoreorx 6 8/18/2025, 2:52:29 AM asciitree.reorx.com ↗
Show HN: ASCII Tree Editor

I've created a web-based editor for ASCII file directory trees called asciitreeman. It's designed to make it easier to edit and reorganize the output of the tree command.

You can try it out here: https://reorx.github.io/asciitreeman/

And the source code is on GitHub: https://github.com/reorx/asciitreeman

Some of the key features include visual tree editing with drag-and-drop-like operations, real-time sync where changes are immediately reflected in the ASCII output, keyboard shortcuts for navigation (J/K or arrow keys), and auto-saving your work to local storage.

What's interesting is that I used Claude Code to "vibe-code" this project in a very short amount of time. It was a fun experiment in AI-assisted development. For those curious about the process, I've included the prompts and specifications I used in the source code. You can check them out in the spec.md and CLAUDE.md files in the repository.

Hop you find it useful!

Comments (6)

chrismorgan · 2h ago
I’m sure lots of people will think this, so I’ll say it—

Box-drawing characters (U+2500–U+257F) are not ASCII (U+0000–U+007F).

There, got it out of my system. :-)

(I know, “ASCII art” colloquially means more than just the ASCII range.)

Timwi · 27m ago
Indeed! I was disinclined to even look at this project because it said ASCII when the box-drawing characters are obviously a lot more suitable. It should say “text-only” or “plain-text” or similar instead.
Timwi · 27m ago
Both your link, and the “Live Demo” link in the GitHub readme, are dead links.
adi_hn07 · 1h ago
Seems like a cool project !! Can you implement auto-parse as soon as the tree is pasted? Right now we can use arrow keys to reorder files, would love drag and drop ability for that too.

Would love to have ASCII Tree Editor on https://www.superlaun.ch

ycombiredd · 2h ago
You might find this a useful companion to your tool.

https://github.com/scottvr/retree

novoreorx · 2h ago
That's pretty neat! My motivation is to manipulate tree structures to provide them to LLM. Retree does the opposite, taking tree text as input to create a real file system hierarchy. Next time I want to create a new project based on the tree I edited through ASCII Tree Editor, I can use retree to do this.