A simple Dots & Boxes game made with Electron, jspm, Babel and PIXI.js
- Install io.js or Node.js. you should run in
--harmony
mode if you are using Node.js. - Get into the project dir and run
$ npm install
- In
browser/jspm_packages/system.src.js
, modify line 1202
// if on the server, remove the "file:" part from the dirname
if (System._nodeRequire)
dirname = dirname.substr(5);
to
// if on the server, remove the "file:" part from the dirname
if (System._nodeRequire && dirname.substr(0, 5) == 'file:')
dirname = dirname.substr(5);
$ npm start
or debug using $ npm run debug
Please run electron-packager by yourself.
MIT © QuenTine