12 releases

0.6.7 Apr 11, 2024
0.6.6 Apr 7, 2024
0.5.10 Feb 4, 2024
0.5.9 Jun 4, 2023
0.5.6 Apr 22, 2023

#27 in Visualization

Download history 14/week @ 2024-02-17 11/week @ 2024-02-24 1/week @ 2024-03-02 1/week @ 2024-03-09 268/week @ 2024-03-30 264/week @ 2024-04-06

532 downloads per month

MIT and LGPL-3.0-or-later

1MB
844 lines

Escape Artist

Escape Artist is a tool for seeing ANSI escape codes in terminal applications. You interact with your shell just like you normally would, and it shows the normally-invisible escape codes in a web UI:

screenshot

Installation

Binaries for major OSs+architectures are attached to the GitHub releases, download+expand one and put it in your PATH. Alternately, you can build+install with Rust's Cargo package manager. Install Rust, then run cargo install escape-artist

After that, you can launch Escape Artist by running escape-artist in your terminal.

Project Status

This was hacked together for the Handmade Network Visibility Jam, so it might be a little rough around the edges. It's primarily been developed on Linux, but I used cross-platform libraries and my limited testing on Windows+macOS has gone well.

FAQ

Q: What are ANSI escape codes?

A: "Invisible" byte sequences that are printed by console applications to stdout and stderr, then interpreted by your terminal emulator. For example, an escape code might tell the terminal to paint all text green until further notice. There are several kinds of escape sequences, this page is a great reference.

Q: What does Escape Artist do?

A: It launches your shell in a pseudoterminal (AKA a pty) and starts a web interface where you can view the output of the shell with escape sequences made visible. You can mouse over individual escape codes to see their raw bytes and (sometimes) a description of what the escape code does.

Q: Why is this useful?

A: It's kinda like View Source for the terminal. Maybe you're curious about what your shell is doing to render your cool new prompt. Maybe you work on a shell or a TUI application and you need to debug it.

Q: How can I configure Escape Artist?

A: Run Escape Artist with the -h or --help flag to see all possible options.

Contributions

Contributions are welcome! This project could certainly use some polish.

Note that I am trying to keep the web front-end of this project as simple as possible. The project currently has no front-end build step, and I would like to keep it that way unless a very compelling reason comes along.

Dependencies

~31–46MB
~816K SLoC