JavaScript client for colyseus - a Minimalistic MMO Game Server for Node.js.
var client = new Colyseus('ws://localhost:2657');
var roomName = "room_name"
var room = client.join(roomName)
room.on('join', function() {
console.log(client.id, "joined", roomName)
})
room.on('error', function() {
console.log(client.id, "couldn't join", roomName)
})
room.on('leave', function() {
console.log(client.id, "leaved", roomName)
})
room.on('data', function(data) {
console.log(client.id, "received on", roomName, data)
})
room.on('patch', function(patches) {
console.log(roomName, "will apply these changes:", patches)
})
room.on('update', function(newState, patches) {
console.log(roomName, "new state:", newState, "changes applied:", patches)
})
MIT