Frogger is an improved version of the original Konami arcade game 'Frogger'. The goal is to avoid obstacles (including bugs) while moving your character towards the opposite side of the river (towards the top of the screen). The more rivers you cross, the more scores you will be rewarded, and the higher you will be ranked on the world rankings.
Clone the Github repository and switch to this directory:
$ git clone https://github.com/neozl24/frogger-game.git
$ cd frogger-game
Then install the dev-dependent modules according to package.json:
$ npm install
All the files needed for development will now be on your machine.
Download Python if you do not already have Python installed. Using Python, Frogger can be started on your local server by entering the following command:
$ python -m SimpleHTTPServer 8080
Then by typing 127.0.0.1:8080
into the browser address bar, your game will automatically start. Character movement will be controlled by the arrow keys.
- Zhong Li - Initial work - neozl24
This project is licensed under the MIT License - see the LICENSE file for details