Skip to content

Instantly share code, notes, and snippets.

@JeffML
Created July 16, 2017 22:41
Show Gist options
  • Save JeffML/e24018a1acf25d0427d91b8309d06dce to your computer and use it in GitHub Desktop.
Save JeffML/e24018a1acf25d0427d91b8309d06dce to your computer and use it in GitHub Desktop.
chess micro service example
const legalMovesWithBoard = require("./helpers/legalMovesWithBoard")
//...
this.add('role:movement,cmd:legalMoves', function (msg, reply) {
this.prior(msg, function (err, result) {
if (msg.board) {
const result2 = legalMovesWithBoard(msg, result);
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment