Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 606 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 606 Bytes

Eric's Tic Tac Toe Game Build Status

Click here to play!

To play game locally:

  • Clone this repository
  • In the root directory:
npm install
npm install -g beefy
npm install -g browserify
browserify src/index.js -o bundle.js
beefy --browserify bundle.js
  • Open http://localhost:9966 in your browser.

To run tests:

  • In the root directory:
npm install testem -g
browserify spec/test.js -o test_bundle.js
testem