Skip to content

jgladch/node-lichess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node-Lichess

API Convenience wrapper for the Lichess.org API

npm install --save node-lichess

  import LichessClient from 'node-lichess';
  const client = new LichessClient();

  client.getUser('jgladch', {}, (err, user) => {
    console.log(user);
  });

  client.getUsersGames('jgladch', {}, (err, games) => {
    console.log(games);
  });

  client.getGameById('o5tc0OQwiOTR', {}, (err, game) => {
    console.log(game);
  });

About

en.lichess.org API wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published