protocol-htty defines a small, terminal-safe bootstrap for carrying a raw HTTP/2 byte stream over terminal-attached sessions.
Traditional terminal user interfaces are useful, but they are also a poor fit for many modern interactions. They are constrained by character-cell rendering, limited layout semantics, awkward input models, and a presentation layer that was never designed for rich documents or structured application state.
In practice, this means TUIs often force applications into compromises: text-heavy layouts, ad-hoc protocols, and bespoke escape-sequence behavior that is hard to standardise across runtimes and terminals.
HTTY exists to keep the portability and deployment advantages of terminal workflows while avoiding the need to build an entire application model out of terminal control codes. Instead of asking the terminal stream itself to represent higher-level UI state, HTTY provides a small bootstrap that can hand a terminal session over to a normal plaintext HTTP/2 connection, enabling applications to attach browser surfaces to a normal terminal session over HTTY.
HTTY does not model application requests, regions, or resources. It transports the two directions of a single plaintext HTTP/2 (h2c) connection over a raw terminal-attached byte stream without introducing a second session protocol.
HTTY v1 begins with one DCS bootstrap sequence:
ESC P + H raw ESC \
After that bootstrap has been consumed, the session carries plain h2c bytes. The takeover layer intentionally stays small so it can be reimplemented in other runtimes.
Please see the project documentation for more details.
-
Getting Started - This guide explains how to get started with
protocol-httyfor DCS-bootstrapped raw HTTP/2 byte stream transport. -
HTTY Specification - This document specifies HTTY as a DCS-bootstrapped raw-mode takeover transport for carrying a plaintext HTTP/2 (
h2c) connection over terminal-attached sessions.
Please see the project releases for all releases.
- Change
Protocol::HTTY::Streamto take explicit input and output endpoints usingStream.new(input, output)andStream.open(input, output, **options). - Read HTTY input without buffering ahead, preserving HTTP/2 frame boundaries by reading only the announced frame payload length.
- Add
Protocol::HTTY::Stream.open(stream, **options)as the preferred constructor for bootstrapping HTTY over an existing stream. - Inline HTTY bootstrap encoding and decoding into
Protocol::HTTY::Stream, keeping the public API focused on the single raw byte-stream abstraction used by HTTP/2.
- Initial release.
We welcome contributions to this project.
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature). - Commit your changes (
git commit -am 'Add some feature'). - Push to the branch (
git push origin my-new-feature). - Create new Pull Request.
To run the test suite:
bundle exec susTo make a new release:
bundle exec bake gem:release:patch # or minor or majorIn order to protect users of this project, we require all contributors to comply with the Developer Certificate of Origin. This ensures that all contributions are properly licensed and attributed.
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.