1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websocket/README.md

35 lines
498 B
Markdown
Raw Normal View History

# websocket
Simple echo websocket server.
## Usage
### server
```bash
2018-05-21 03:15:29 +02:00
cd examples/websocket
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
```bash
cd examples/websocket
cargo run --bin websocket-client
```
### python client
- ``pip install aiohttp``
- ``python websocket-client.py``
if ubuntu :
- ``pip3 install aiohttp``
- ``python3 websocket-client.py``