An open API service indexing awesome lists of open source software.

https://github.com/gistyr/tokio_basic_ws

Simple web socket server built with tokio and tokio_tungstenite
https://github.com/gistyr/tokio_basic_ws

basic rust rust-web-server rust-web-socket simple tokio tokio-rs tokio-tugstenite tungstenite web web-socket web-socket-server

Last synced: about 1 year ago
JSON representation

Simple web socket server built with tokio and tokio_tungstenite

Awesome Lists containing this project

README

          

# tokio_basic_ws
#### Simple web socket server built with tokio and tokio_tungstenite
Was a learning project.
## Settings
```
Change:
let listen_address: &str = "secret";
To a socket:
let listen_address: &str = "127.0.0.1:8008";
```