cs01/gdbgui

use modern async backend

Aberta

#315 aberto em 18 de fev. de 2020

 (0 comentário) (0 reação) (0 responsável)TypeScript (522 forks)batch import
help wanted

Métricas do repositório

Stars
 (10.349 estrelas)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

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/

Guia do colaborador