gitextract_90qmtrh_/ ├── .clang-format ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── support-request.md │ └── workflows/ │ ├── backend.yml │ ├── docker.yml │ ├── frontend.yml │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Dockerfile.alpine ├── LICENSE ├── README.md ├── app.rc.in ├── cmake/ │ └── GetGitVersion.cmake ├── html/ │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.js │ ├── .yarn/ │ │ └── patches/ │ │ └── zmodem.js-npm-0.1.10-e5537fa2ed.patch │ ├── .yarnrc.yml │ ├── README.md │ ├── gulpfile.js │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── app.tsx │ │ │ ├── modal/ │ │ │ │ ├── index.tsx │ │ │ │ └── modal.scss │ │ │ └── terminal/ │ │ │ ├── index.tsx │ │ │ └── xterm/ │ │ │ ├── addons/ │ │ │ │ ├── overlay.ts │ │ │ │ └── zmodem.ts │ │ │ └── index.ts │ │ ├── index.tsx │ │ ├── style/ │ │ │ └── index.scss │ │ └── template.html │ ├── tsconfig.json │ └── webpack.config.js ├── man/ │ ├── README.md │ ├── ttyd.1 │ └── ttyd.man.md ├── scripts/ │ └── cross-build.sh ├── snap/ │ └── snapcraft.yaml └── src/ ├── compat.h ├── html.h ├── http.c ├── protocol.c ├── pty.c ├── pty.h ├── server.c ├── server.h ├── utils.c └── utils.h