https://github.com/gvozdenkov/chat-playground
Test Nestjs backend and React frontend chat
https://github.com/gvozdenkov/chat-playground
Last synced: over 1 year ago
JSON representation
Test Nestjs backend and React frontend chat
- Host: GitHub
- URL: https://github.com/gvozdenkov/chat-playground
- Owner: gvozdenkov
- Created: 2024-07-24T13:17:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-16T07:01:54.000Z (almost 2 years ago)
- Last Synced: 2025-01-05T12:42:31.399Z (over 1 year ago)
- Language: TypeScript
- Size: 410 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat App Sandbox
Test chat creation with `Nestjs` backend, and `React` frontend
## Local Dev
```bash
git clone git@github.com:gvozdenkov/websocket-chat.git
# use node 20
# start backend
cd websocket-chat/backend
npm i
npm run start:dev
# start frontend
cd ../frontend
npm i
npm run dev
# open 2 browser windows and open http://localhost:5173/
# Start chating :)
```