-
WebSocket示例:结合FastAPI与React的websocket-example
资源介绍
WebSocket示例
该项目是通过引导的。
服务器
该服务器是使用FastAPI实现的。 首先,安装依赖项:
pip install fastapi "uvicorn[standard]"
然后,运行它:
uvicorn run:app
必须在localhost:8000中创建服务器。
客户
客户端使用React和Recharts实现。
转到前端目录:
cd frontend
安装依赖项:
yarn install
并运行它:
yarn start
在localhost:3000打开浏览器,您必须看到每秒更新一次的图表。