Skip to content

Instantly share code, notes, and snippets.

@jhcheung
Created June 8, 2020 02:40
Show Gist options
  • Save jhcheung/288cc9085efa8ab4b07072eef2f9857c to your computer and use it in GitHub Desktop.
Save jhcheung/288cc9085efa8ab4b07072eef2f9857c to your computer and use it in GitHub Desktop.
server.js
const { Server } = require('boardgame.io/server');
const { TicTacToe } = require('./Game');
const server = Server({ games: [TicTacToe] });
server.run(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment