A minimal multiplayer piano based on DayDun Piano https://piano.owo69.me/
mpp
 
 
 
Go to file
Lamp 840490b362 ip as default nick 2022-01-17 22:30:17 -06:00
frontend front not ignore self note 2021-12-03 01:03:59 -06:00
.gitignore init backend 2021-12-02 14:56:12 -08:00
package-lock.json reorganize files 2021-12-02 20:28:16 -08:00
package.json reorganize files 2021-12-02 20:28:16 -08:00
readme.md Update 'readme.md' 2021-12-03 15:52:11 -06:00
server.js ip as default nick 2022-01-17 22:30:17 -06:00

readme.md

The frontend was stolen from DayDun and the backend re-implemented from scratch. Rooms and rate limit functionality was stripped out, each connection is a different user, and raw IP addresses are used for user ids.

The notable thing about this and DayDun's piano is that note events are simply, individually, immediately broadcasted in a minimal binary format, and clients instantly play notes they receive; unlike Brandon Lockaby's Multiplayer Piano which buffers note events with timing data into JSON that's sent every 200ms and then played exactly one second after they actually happened. (PianoRhythm does something similar.) Doing this preserves the exact note timing regardless of networking quality (unless it takes longer than a second for the data to get through), which is fine for listening to other players, but a problem when playing together. With this piano, notes go directly through as fast as possible, which is perfect for local networks, and reveals the true networking quality and latency over the internet.

It's also super simple to run if you do want to use it on your local network; just download, npm install, node server.js and connect to it (default port is 924).