2018-04-13 03:18:42 +02:00
|
|
|
# websocket
|
|
|
|
|
|
|
|
Simple echo websocket server.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### server
|
|
|
|
|
2022-02-18 04:36:04 +01:00
|
|
|
```sh
|
2021-06-06 19:50:30 +02:00
|
|
|
cd websockets/websocket
|
2018-09-24 10:57:36 +02:00
|
|
|
cargo run --bin websocket-server
|
2018-04-13 03:18:42 +02:00
|
|
|
# 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)
|
2018-04-13 03:18:42 +02:00
|
|
|
|
2018-09-24 10:57:36 +02:00
|
|
|
### rust client
|
|
|
|
|
2022-02-18 04:36:04 +01:00
|
|
|
```sh
|
2021-06-06 19:50:30 +02:00
|
|
|
cd websockets/websocket
|
2018-09-24 10:57:36 +02:00
|
|
|
cargo run --bin websocket-client
|
|
|
|
```
|
|
|
|
|
2018-04-13 03:18:42 +02:00
|
|
|
### python client
|
|
|
|
|
2022-03-06 01:43:10 +01:00
|
|
|
- `pip install aiohttp`
|
|
|
|
- `python websocket-client.py`
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
if ubuntu :
|
|
|
|
|
2022-03-06 01:43:10 +01:00
|
|
|
- `pip3 install aiohttp`
|
|
|
|
- `python3 websocket-client.py`
|