Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tinrab/rusty-chat
A chat app made with Rust and React
https://github.com/tinrab/rusty-chat
react rust tutorial websocket
Last synced: about 1 month ago
JSON representation
A chat app made with Rust and React
- Host: GitHub
- URL: https://github.com/tinrab/rusty-chat
- Owner: tinrab
- License: mit
- Created: 2020-05-10T16:46:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T12:02:19.000Z (about 1 year ago)
- Last Synced: 2024-12-09T22:02:27.756Z (about 2 months ago)
- Topics: react, rust, tutorial, websocket
- Language: TypeScript
- Homepage:
- Size: 1.85 MB
- Stars: 167
- Watchers: 8
- Forks: 28
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rusty Chat
A chat app made with Rust and React.
Source code for article [Building a Real-time Chat App in Rust and React](https://outcrawl.com/rust-react-realtime-chat).
## Set up
First start the server.
```bash
RUST_LOG=info cargo run
```Then start the front-end app.
```bash
cd frontend && nvm use && npm install
npm run start
```Now you can open in multiple tabs and try it out.