cs01/gdbgui

use modern async backend

开放

#315 创建于 2020年2月18日

 (0 条评论) (0 个反应) (0 位负责人)TypeScript (521 个派生)batch import
help wanted

仓库指标

星标
 (10,351 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Is your feature request related to a problem? Please describe. Currently gdbgui's backend uses SocketIO and has a dependency on gevent, an older async implementation. Additionally, SocketIO is not needed in all websocket implementations.

Describe the solution you'd like Use a modern async backend that does not require gevent/eventlet, nor SocketIO. A good candidate is FastAPI. Another is Starlette, which FastAPI is based on.

https://fastapi.tiangolo.com/ https://www.starlette.io/

贡献者指南