1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websockets/echo/README.md

35 lines
480 B
Markdown
Raw Normal View History

# websocket
Simple echo websocket server.
## Usage
### server
2022-02-18 04:36:04 +01:00
```sh
cd websockets/echo
cargo run --bin websocket-server
# Started http server: 127.0.0.1:8080
```
### web client
2019-12-22 20:08:49 +01:00
- [http://localhost:8080/index.html](http://localhost:8080/index.html)
### rust client
2022-02-18 04:36:04 +01:00
```sh
2024-07-19 20:45:43 +02:00
cd websockets/echo
cargo run --bin websocket-client
```
### python client
2022-03-06 01:43:10 +01:00
- `pip install aiohttp`
- `python websocket-client.py`
if ubuntu :
2022-03-06 01:43:10 +01:00
- `pip3 install aiohttp`
- `python3 websocket-client.py`