A real-time, collaborative pixel art platform inspired by Reddit's r/place, implemented in Clojure and ClojureScript.
- No database, delibrately not to use a database or external dependency. This will help us highlight some of the goodness Clojure has to offer.
- Project aims to host only one global canvas.
Backend is a HTTP-kit server which serves both HTTP and WebSockets requests.
sequenceDiagram
participant A as "UI (Clojurescript)"
participant B as "Backend (Clojure)"
B-->>A: HTTP: Render UI
B-->>A: WS: Send canvas
B-->>A: WS: Send canvas updates
A-->>B: WS: Send canvas update
The project is built on a 'watch me code' streams hosted by clojure-camp