This is a LiveSync relay server.
LiveSync enables real-time collaborative editing of local files. Open a file in your editor, share it with a single command, and others can join and edit simultaneously — changes sync instantly to everyone’s disk.
# Install
npm install -g livesync
# Share a file
livesync share myfile.md
# On another machine, join with the session ID
livesync join abc123
This relay exposes two endpoints for LiveSync clients:
POST /session — Create a new sessionGET /session/:id — Connect via WebSocketLearn more at trylivesync.dev