1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websockets/websocket/README.md
2021-06-07 02:50:30 +09:00

35 lines
502 B
Markdown

# websocket
Simple echo websocket server.
## Usage
### server
```bash
cd websockets/websocket
cargo run --bin websocket-server
# Started http server: 127.0.0.1:8080
```
### web client
- [http://localhost:8080/index.html](http://localhost:8080/index.html)
### rust client
```bash
cd websockets/websocket
cargo run --bin websocket-client
```
### python client
- ``pip install aiohttp``
- ``python websocket-client.py``
if ubuntu :
- ``pip3 install aiohttp``
- ``python3 websocket-client.py``