suprafun / colyseus.js

JavaScript client for Colyseus MMO Game Server

Home Page:https://github.com/gamestdio/colyseus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

colyseus.js for the browser Join the chat at https://gitter.im/gamestdio/colyseus

JavaScript client for colyseus - a Minimalistic MMO Game Server for Node.js.

Usage

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)
})

License

MIT

About

JavaScript client for Colyseus MMO Game Server

https://github.com/gamestdio/colyseus

License:MIT License


Languages

Language:JavaScript 100.0%