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
- Host: GitHub
- URL: https://github.com/gistyr/tokio_basic_ws
- Owner: Gistyr
- License: unlicense
- Created: 2025-03-20T21:09:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-20T21:20:26.000Z (about 1 year ago)
- Last Synced: 2025-03-20T22:26:23.203Z (about 1 year ago)
- Topics: basic, rust, rust-web-server, rust-web-socket, simple, tokio, tokio-rs, tokio-tugstenite, tungstenite, web, web-socket, web-socket-server
- Language: Rust
- Homepage: https://gistyr.dev
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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";
```