https://github.com/blackmann/chillnerds
https://github.com/blackmann/chillnerds
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blackmann/chillnerds
- Owner: blackmann
- Created: 2022-10-19T23:21:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-19T23:21:48.000Z (over 3 years ago)
- Last Synced: 2025-03-22T02:45:37.552Z (about 1 year ago)
- Language: TypeScript
- Size: 189 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chill nerds
Having fun with random colleagues and keep the [remote] workplace chill.
## Design
This is a monorepo containing the extension app written in React ⚛️ and the backend written in Golang.
Communication is done _directly_ between peers using WebRTC. The server however just cordinates the creation of _ice_ 🧊 [not WebRTC ICES] and updating of ICEs [this time WebRTC].
Chats are not saved at the backend and get lost when browser closes.
## Build extension
To build the extension, run
```sh
cd app
yarn pkg-ext
```
This will build and copy the files over to the popup directory of the extension
## Run server
```sh
cd server
go run .
```