Skip to content

Real-time chat using websockets. Programmed with Rust and Solid.js

Notifications You must be signed in to change notification settings

tsmanuelanton/RustChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💬 Rust Chat

Real-time chat using websockets.

Pasos para registrar la apliación

🏗️ Technologies

Chat server has been built with the Rust languaje with Hyper, Tokio and tungstenite.

Frontend uses Solid.js and TypeScript (a faster React.js alternative).

Technologies

🚀 Run project

cd RustChat

Start server

  • To start the chat server you need to have installed Rust and then run. Then, you run this commands:
cargo build
cargo run

After this, chat server will be listening in localhost at port 3000.

Start webpage

To start using the chat, server must be running.

cd frontend
npm install
npm run build
npm run start