This is an attempt to create a video game based on the classic Pong gameplay.
It's using pure HTML5 technologies, as well as pure reactive functionnal javascript (using Cycle.js).
Make sure you have installed nodejs and run:
$ npm install
You may now build the assets using the following command:
$ npm start
Last steps consists to open the index.html using your favourite webserver.
$ node server.js
and open http://localhost:3000 in your favourite browser.
This games require 2 players with perfect reflex skills (just "ok skill" will be fine though).
A: go down
B: go up
J: go down
K: go up
Any contributions are always welcome, even just to discuss about improvements ;)
- Development: gquemener
- Sound Design: baptisteq
- Initial Idea: The initial idea, as well as the game graphical elements (board, players, etc.) come from an excellent book about getting the basic principles of game development using HTML5. The name of the book is "HTML5 Game Development by Example - 2nd Edition (2015 - Packt Publishing)".