2018-04-13 09:18:42 +08:00
|
|
|
# websocket
|
|
|
|
|
|
|
|
Simple echo websocket server.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### server
|
|
|
|
|
|
|
|
```bash
|
2018-05-20 18:15:29 -07:00
|
|
|
cd examples/websocket
|
2018-09-24 11:57:36 +03:00
|
|
|
cargo run --bin websocket-server
|
2018-04-13 09:18:42 +08:00
|
|
|
# Started http server: 127.0.0.1:8080
|
|
|
|
```
|
|
|
|
|
|
|
|
### web client
|
|
|
|
|
2019-12-22 22:08:49 +03:00
|
|
|
- [http://localhost:8080/index.html](http://localhost:8080/index.html)
|
2018-04-13 09:18:42 +08:00
|
|
|
|
2018-09-24 11:57:36 +03:00
|
|
|
### rust client
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd examples/websocket
|
|
|
|
cargo run --bin websocket-client
|
|
|
|
```
|
|
|
|
|
2018-04-13 09:18:42 +08:00
|
|
|
### python client
|
|
|
|
|
|
|
|
- ``pip install aiohttp``
|
|
|
|
- ``python websocket-client.py``
|
|
|
|
|
|
|
|
if ubuntu :
|
|
|
|
|
|
|
|
- ``pip3 install aiohttp``
|
|
|
|
- ``python3 websocket-client.py``
|