Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 661 Bytes

code_guide.md

File metadata and controls

11 lines (6 loc) · 661 Bytes

Architecture.

Junto is currently a single page web application. It all gets loaded into the web page at once, as javascript. Only DOM element needed is a container div for the app.

Index.html file is served by a node.js webserver.

Junto is all about presence. And presence happens in realtime. So Junto uses two services for realtime data. The node.js hosts a websockets (socket.io) server that does two things: it is a signaling server and also hosts data that is only transiently relevant to the application (such as how many users are currently online)

Folders

  • lib/libraries: