Skip to content

ragnar-johannsson/igsclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IGSClient

An event driven observation client for Pandanet's Internet Go Server.

Installation

$ npm install igsclient

Usage

The following sets the client up to continuously observe the most popular game on IGS.

var IGSClient = require('igsclient');
var client = new IGSClient().connect();

client.on('connected', function () {
    client.getGames();
    client.getUsers();
});

client.on('games', function (games) {
    console.log('Received games list:');
    console.log(games);
    console.log('Observing the first game on the list.');
    client.observe(games[0].gameId);
});

client.on('users', function (users) {
    console.log('Received users list:');
    console.log(users);
});

client.on('observe-moves', function (id, moves) {
    console.log('Received updated game position in game ' + id);
    console.log(moves);
});

client.on('observe-end', function (id, result) {
    console.log('Game ' + id + ' ended. Result: ' + result)
    client.getGames();
});

Further information about the client's events and the objects they emit can be gauged in the source code, for now.

License

Simplified BSD. See the LICENSE file for details.

About

An event driven observation client for Pandanet's Internet Go Server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages