tty-web 0.16.4

Web-based terminal emulator — opens a real PTY in the browser over WebSocket
Documentation
1
2
3
4
5
6
7
8
9
10
//! **tty-web** — web-based terminal emulator library.
//!
//! Opens a real PTY in the browser over WebSocket. Can be used as a standalone
//! binary or embedded as a library into other applications.

pub mod config;
pub(crate) mod pty;
pub mod session;
pub mod terminal;
pub mod web;