├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── proposal.md ├── config.yml └── workflows │ ├── config.yml │ └── issue-labeler.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── pages ├── 2048game.html ├── Car_game.html ├── Fall_game.html ├── Guess_the_number.html ├── candycrush.html ├── connect-four-game.html ├── dino.html ├── doodlejump.html ├── dot-and-boxes.html ├── flappy_bird.html ├── flips-me.html ├── hangman.html ├── memory-game.html ├── pacman.html ├── pingpong.html ├── randomJoke.html ├── reaction.html ├── rock-paper-scissor.html ├── simon_game.html ├── snakegame.html ├── space_shooter.html ├── tetris.html ├── tic-tac-toe.html ├── tictactoe.html ├── wall-breaker.html └── whack-a-mole.html └── static ├── css ├── 2048game.css ├── Fall_game.css ├── candycrush.css ├── car_game.css ├── connect-four.css ├── dino.css ├── doodlejump.css ├── flappy_bird.css ├── flip-me.css ├── flips-me.css ├── guess_the_number.css ├── hangman.css ├── memory-game.css ├── pacman.css ├── pingpong.css ├── randomJoke.css ├── reaction.css ├── simon.css ├── snake.css ├── space_shooter.css ├── style.css ├── tetris.css ├── tic-tac-toe.css ├── wall-breaker.css └── whack-a-mole.css ├── images ├── 2048game │ └── 2048game.png ├── Fall_game │ ├── background.png │ ├── brick.jpg │ └── pic.jpg ├── Guess the Number │ └── guess the number.png ├── Js-gamesCollage.png ├── PacMan │ ├── Pacman_HD.png │ └── background.jpg ├── Simon-Game │ └── Simon_game.png ├── Snakegame │ └── bg.jpg ├── WallBreaker │ └── WallBreaker.png ├── candycrush │ ├── background.jpg │ ├── blue-candy.png │ ├── green-candy.png │ ├── logo.png │ ├── orange-candy.png │ ├── purple-candy.png │ ├── red-candy.png │ └── yellow-candy.png ├── car_game │ ├── car1.png │ ├── car2.png │ └── car_game.png ├── connect-four │ └── connect-four.png ├── dino │ ├── bg.png │ ├── dino.png │ ├── dinogame.png │ └── dragon.png ├── doodlejump │ ├── background.png │ ├── doodlejump.png │ ├── doodler-guy.png │ ├── platform.png │ └── playButton.png ├── dot-and-boxes │ ├── Dots_boxes.png │ └── fav.png ├── favicon.png ├── flappy_bird │ ├── bg.png │ ├── bird.png │ ├── enter.png │ ├── fg.png │ ├── flappy_bird.PNG │ ├── pipeNorth.png │ └── pipeSouth.png ├── flip-me.JPG ├── flips-me │ └── flip.jpg ├── hangman │ ├── Web view.PNG │ ├── hangman.png │ └── mobile view.PNG ├── memory-game │ ├── Gifs │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── Background.jpg │ │ ├── card.PNG │ │ └── game.svg │ └── display-img.jpg ├── pingpong │ ├── pingpong.jpg │ └── tabletennis.jpg ├── randomJoke.jfif ├── reaction.PNG ├── rock-paper-scissor │ ├── 1.png │ ├── 2.png │ └── 3.png ├── space_shooter │ ├── background_ssg.png │ ├── bullet_ssg.png │ ├── enemy_ssg.png │ ├── poster_ssg.png │ └── spaceship_ssg.png ├── tetris │ └── tetris.png ├── tic-tac-toe │ ├── background.png │ ├── logo.png │ └── tictactoe.PNG └── whack-a-mole │ ├── hammer.png │ └── mole.png ├── js ├── 2048game.js ├── Fall_game.js ├── candycrush.js ├── car_game.js ├── connect-four.js ├── dino.js ├── doodlejump.js ├── dot-and-boxes.js ├── flappy_bird.js ├── flip-me.js ├── flips-me.js ├── game.js ├── guess_the_number.js ├── hangman.js ├── main.js ├── memory-game.js ├── pacman.js ├── pingpong.js ├── randomJoke.js ├── reaction.js ├── rock-paper-scissor.js ├── snake.js ├── space_shooter.js ├── tetris.js ├── tetrominoes.js ├── tic-tac-toe.js ├── wall-breaker.js └── whack-a-mole.js └── music ├── PacMan └── ready.mp3 ├── Simon-Game ├── blue.mp3 ├── green.mp3 ├── red.mp3 ├── wrong.mp3 └── yellow.mp3 ├── Snakegame ├── food.mp3 ├── gameover.mp3 ├── move.mp3 └── music.mp3 ├── connect-four ├── click.mp3 ├── lost.wav └── win.wav ├── hangman ├── click.mp3 ├── lost.wav └── win.wav ├── pingpong ├── hit.mp3 ├── score.mp3 └── wall.mp3 ├── tic-tac-toe ├── click.mp3 └── win.wav └── wallbreaker ├── gameover.mp3 └── move.mp3 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/ISSUE_TEMPLATE/proposal.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/workflows/config.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.github/workflows/issue-labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/package.json -------------------------------------------------------------------------------- /pages/2048game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/2048game.html -------------------------------------------------------------------------------- /pages/Car_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/Car_game.html -------------------------------------------------------------------------------- /pages/Fall_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/Fall_game.html -------------------------------------------------------------------------------- /pages/Guess_the_number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/Guess_the_number.html -------------------------------------------------------------------------------- /pages/candycrush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/candycrush.html -------------------------------------------------------------------------------- /pages/connect-four-game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/connect-four-game.html -------------------------------------------------------------------------------- /pages/dino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/dino.html -------------------------------------------------------------------------------- /pages/doodlejump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/doodlejump.html -------------------------------------------------------------------------------- /pages/dot-and-boxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/dot-and-boxes.html -------------------------------------------------------------------------------- /pages/flappy_bird.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/flappy_bird.html -------------------------------------------------------------------------------- /pages/flips-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/flips-me.html -------------------------------------------------------------------------------- /pages/hangman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/hangman.html -------------------------------------------------------------------------------- /pages/memory-game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/memory-game.html -------------------------------------------------------------------------------- /pages/pacman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/pacman.html -------------------------------------------------------------------------------- /pages/pingpong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/pingpong.html -------------------------------------------------------------------------------- /pages/randomJoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/randomJoke.html -------------------------------------------------------------------------------- /pages/reaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/reaction.html -------------------------------------------------------------------------------- /pages/rock-paper-scissor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/rock-paper-scissor.html -------------------------------------------------------------------------------- /pages/simon_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/simon_game.html -------------------------------------------------------------------------------- /pages/snakegame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/snakegame.html -------------------------------------------------------------------------------- /pages/space_shooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/space_shooter.html -------------------------------------------------------------------------------- /pages/tetris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/tetris.html -------------------------------------------------------------------------------- /pages/tic-tac-toe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/tic-tac-toe.html -------------------------------------------------------------------------------- /pages/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/tictactoe.html -------------------------------------------------------------------------------- /pages/wall-breaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/wall-breaker.html -------------------------------------------------------------------------------- /pages/whack-a-mole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/pages/whack-a-mole.html -------------------------------------------------------------------------------- /static/css/2048game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/2048game.css -------------------------------------------------------------------------------- /static/css/Fall_game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/Fall_game.css -------------------------------------------------------------------------------- /static/css/candycrush.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/candycrush.css -------------------------------------------------------------------------------- /static/css/car_game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/car_game.css -------------------------------------------------------------------------------- /static/css/connect-four.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/connect-four.css -------------------------------------------------------------------------------- /static/css/dino.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/dino.css -------------------------------------------------------------------------------- /static/css/doodlejump.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/doodlejump.css -------------------------------------------------------------------------------- /static/css/flappy_bird.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/flappy_bird.css -------------------------------------------------------------------------------- /static/css/flip-me.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/flip-me.css -------------------------------------------------------------------------------- /static/css/flips-me.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/flips-me.css -------------------------------------------------------------------------------- /static/css/guess_the_number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/guess_the_number.css -------------------------------------------------------------------------------- /static/css/hangman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/hangman.css -------------------------------------------------------------------------------- /static/css/memory-game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/memory-game.css -------------------------------------------------------------------------------- /static/css/pacman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/pacman.css -------------------------------------------------------------------------------- /static/css/pingpong.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/pingpong.css -------------------------------------------------------------------------------- /static/css/randomJoke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/randomJoke.css -------------------------------------------------------------------------------- /static/css/reaction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/reaction.css -------------------------------------------------------------------------------- /static/css/simon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/simon.css -------------------------------------------------------------------------------- /static/css/snake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/snake.css -------------------------------------------------------------------------------- /static/css/space_shooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/space_shooter.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/tetris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/tetris.css -------------------------------------------------------------------------------- /static/css/tic-tac-toe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/tic-tac-toe.css -------------------------------------------------------------------------------- /static/css/wall-breaker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/wall-breaker.css -------------------------------------------------------------------------------- /static/css/whack-a-mole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/css/whack-a-mole.css -------------------------------------------------------------------------------- /static/images/2048game/2048game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/2048game/2048game.png -------------------------------------------------------------------------------- /static/images/Fall_game/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Fall_game/background.png -------------------------------------------------------------------------------- /static/images/Fall_game/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Fall_game/brick.jpg -------------------------------------------------------------------------------- /static/images/Fall_game/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Fall_game/pic.jpg -------------------------------------------------------------------------------- /static/images/Guess the Number/guess the number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Guess the Number/guess the number.png -------------------------------------------------------------------------------- /static/images/Js-gamesCollage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Js-gamesCollage.png -------------------------------------------------------------------------------- /static/images/PacMan/Pacman_HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/PacMan/Pacman_HD.png -------------------------------------------------------------------------------- /static/images/PacMan/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/PacMan/background.jpg -------------------------------------------------------------------------------- /static/images/Simon-Game/Simon_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Simon-Game/Simon_game.png -------------------------------------------------------------------------------- /static/images/Snakegame/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/Snakegame/bg.jpg -------------------------------------------------------------------------------- /static/images/WallBreaker/WallBreaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/WallBreaker/WallBreaker.png -------------------------------------------------------------------------------- /static/images/candycrush/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/background.jpg -------------------------------------------------------------------------------- /static/images/candycrush/blue-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/blue-candy.png -------------------------------------------------------------------------------- /static/images/candycrush/green-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/green-candy.png -------------------------------------------------------------------------------- /static/images/candycrush/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/logo.png -------------------------------------------------------------------------------- /static/images/candycrush/orange-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/orange-candy.png -------------------------------------------------------------------------------- /static/images/candycrush/purple-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/purple-candy.png -------------------------------------------------------------------------------- /static/images/candycrush/red-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/red-candy.png -------------------------------------------------------------------------------- /static/images/candycrush/yellow-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/candycrush/yellow-candy.png -------------------------------------------------------------------------------- /static/images/car_game/car1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/car_game/car1.png -------------------------------------------------------------------------------- /static/images/car_game/car2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/car_game/car2.png -------------------------------------------------------------------------------- /static/images/car_game/car_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/car_game/car_game.png -------------------------------------------------------------------------------- /static/images/connect-four/connect-four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/connect-four/connect-four.png -------------------------------------------------------------------------------- /static/images/dino/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dino/bg.png -------------------------------------------------------------------------------- /static/images/dino/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dino/dino.png -------------------------------------------------------------------------------- /static/images/dino/dinogame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dino/dinogame.png -------------------------------------------------------------------------------- /static/images/dino/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dino/dragon.png -------------------------------------------------------------------------------- /static/images/doodlejump/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/doodlejump/background.png -------------------------------------------------------------------------------- /static/images/doodlejump/doodlejump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/doodlejump/doodlejump.png -------------------------------------------------------------------------------- /static/images/doodlejump/doodler-guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/doodlejump/doodler-guy.png -------------------------------------------------------------------------------- /static/images/doodlejump/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/doodlejump/platform.png -------------------------------------------------------------------------------- /static/images/doodlejump/playButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/doodlejump/playButton.png -------------------------------------------------------------------------------- /static/images/dot-and-boxes/Dots_boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dot-and-boxes/Dots_boxes.png -------------------------------------------------------------------------------- /static/images/dot-and-boxes/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/dot-and-boxes/fav.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/flappy_bird/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/bg.png -------------------------------------------------------------------------------- /static/images/flappy_bird/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/bird.png -------------------------------------------------------------------------------- /static/images/flappy_bird/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/enter.png -------------------------------------------------------------------------------- /static/images/flappy_bird/fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/fg.png -------------------------------------------------------------------------------- /static/images/flappy_bird/flappy_bird.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/flappy_bird.PNG -------------------------------------------------------------------------------- /static/images/flappy_bird/pipeNorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/pipeNorth.png -------------------------------------------------------------------------------- /static/images/flappy_bird/pipeSouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flappy_bird/pipeSouth.png -------------------------------------------------------------------------------- /static/images/flip-me.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flip-me.JPG -------------------------------------------------------------------------------- /static/images/flips-me/flip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/flips-me/flip.jpg -------------------------------------------------------------------------------- /static/images/hangman/Web view.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/hangman/Web view.PNG -------------------------------------------------------------------------------- /static/images/hangman/hangman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/hangman/hangman.png -------------------------------------------------------------------------------- /static/images/hangman/mobile view.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/hangman/mobile view.PNG -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/0.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/1.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/2.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/3.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/4.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/5.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/6.gif -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/Background.jpg -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/card.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/card.PNG -------------------------------------------------------------------------------- /static/images/memory-game/Gifs/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/Gifs/game.svg -------------------------------------------------------------------------------- /static/images/memory-game/display-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/memory-game/display-img.jpg -------------------------------------------------------------------------------- /static/images/pingpong/pingpong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/pingpong/pingpong.jpg -------------------------------------------------------------------------------- /static/images/pingpong/tabletennis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/pingpong/tabletennis.jpg -------------------------------------------------------------------------------- /static/images/randomJoke.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/randomJoke.jfif -------------------------------------------------------------------------------- /static/images/reaction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/reaction.PNG -------------------------------------------------------------------------------- /static/images/rock-paper-scissor/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/rock-paper-scissor/1.png -------------------------------------------------------------------------------- /static/images/rock-paper-scissor/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/rock-paper-scissor/2.png -------------------------------------------------------------------------------- /static/images/rock-paper-scissor/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/rock-paper-scissor/3.png -------------------------------------------------------------------------------- /static/images/space_shooter/background_ssg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/space_shooter/background_ssg.png -------------------------------------------------------------------------------- /static/images/space_shooter/bullet_ssg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/space_shooter/bullet_ssg.png -------------------------------------------------------------------------------- /static/images/space_shooter/enemy_ssg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/space_shooter/enemy_ssg.png -------------------------------------------------------------------------------- /static/images/space_shooter/poster_ssg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/space_shooter/poster_ssg.png -------------------------------------------------------------------------------- /static/images/space_shooter/spaceship_ssg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/space_shooter/spaceship_ssg.png -------------------------------------------------------------------------------- /static/images/tetris/tetris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/tetris/tetris.png -------------------------------------------------------------------------------- /static/images/tic-tac-toe/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/tic-tac-toe/background.png -------------------------------------------------------------------------------- /static/images/tic-tac-toe/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/tic-tac-toe/logo.png -------------------------------------------------------------------------------- /static/images/tic-tac-toe/tictactoe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/tic-tac-toe/tictactoe.PNG -------------------------------------------------------------------------------- /static/images/whack-a-mole/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/whack-a-mole/hammer.png -------------------------------------------------------------------------------- /static/images/whack-a-mole/mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/images/whack-a-mole/mole.png -------------------------------------------------------------------------------- /static/js/2048game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/2048game.js -------------------------------------------------------------------------------- /static/js/Fall_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/Fall_game.js -------------------------------------------------------------------------------- /static/js/candycrush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/candycrush.js -------------------------------------------------------------------------------- /static/js/car_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/car_game.js -------------------------------------------------------------------------------- /static/js/connect-four.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/connect-four.js -------------------------------------------------------------------------------- /static/js/dino.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/dino.js -------------------------------------------------------------------------------- /static/js/doodlejump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/doodlejump.js -------------------------------------------------------------------------------- /static/js/dot-and-boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/dot-and-boxes.js -------------------------------------------------------------------------------- /static/js/flappy_bird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/flappy_bird.js -------------------------------------------------------------------------------- /static/js/flip-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/flip-me.js -------------------------------------------------------------------------------- /static/js/flips-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/flips-me.js -------------------------------------------------------------------------------- /static/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/game.js -------------------------------------------------------------------------------- /static/js/guess_the_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/guess_the_number.js -------------------------------------------------------------------------------- /static/js/hangman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/hangman.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/memory-game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/memory-game.js -------------------------------------------------------------------------------- /static/js/pacman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/pacman.js -------------------------------------------------------------------------------- /static/js/pingpong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/pingpong.js -------------------------------------------------------------------------------- /static/js/randomJoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/randomJoke.js -------------------------------------------------------------------------------- /static/js/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/reaction.js -------------------------------------------------------------------------------- /static/js/rock-paper-scissor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/rock-paper-scissor.js -------------------------------------------------------------------------------- /static/js/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/snake.js -------------------------------------------------------------------------------- /static/js/space_shooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/space_shooter.js -------------------------------------------------------------------------------- /static/js/tetris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/tetris.js -------------------------------------------------------------------------------- /static/js/tetrominoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/tetrominoes.js -------------------------------------------------------------------------------- /static/js/tic-tac-toe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/tic-tac-toe.js -------------------------------------------------------------------------------- /static/js/wall-breaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/wall-breaker.js -------------------------------------------------------------------------------- /static/js/whack-a-mole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/js/whack-a-mole.js -------------------------------------------------------------------------------- /static/music/PacMan/ready.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/PacMan/ready.mp3 -------------------------------------------------------------------------------- /static/music/Simon-Game/blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Simon-Game/blue.mp3 -------------------------------------------------------------------------------- /static/music/Simon-Game/green.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Simon-Game/green.mp3 -------------------------------------------------------------------------------- /static/music/Simon-Game/red.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Simon-Game/red.mp3 -------------------------------------------------------------------------------- /static/music/Simon-Game/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Simon-Game/wrong.mp3 -------------------------------------------------------------------------------- /static/music/Simon-Game/yellow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Simon-Game/yellow.mp3 -------------------------------------------------------------------------------- /static/music/Snakegame/food.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Snakegame/food.mp3 -------------------------------------------------------------------------------- /static/music/Snakegame/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Snakegame/gameover.mp3 -------------------------------------------------------------------------------- /static/music/Snakegame/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Snakegame/move.mp3 -------------------------------------------------------------------------------- /static/music/Snakegame/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/Snakegame/music.mp3 -------------------------------------------------------------------------------- /static/music/connect-four/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/connect-four/click.mp3 -------------------------------------------------------------------------------- /static/music/connect-four/lost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/connect-four/lost.wav -------------------------------------------------------------------------------- /static/music/connect-four/win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/connect-four/win.wav -------------------------------------------------------------------------------- /static/music/hangman/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/hangman/click.mp3 -------------------------------------------------------------------------------- /static/music/hangman/lost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/hangman/lost.wav -------------------------------------------------------------------------------- /static/music/hangman/win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/hangman/win.wav -------------------------------------------------------------------------------- /static/music/pingpong/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/pingpong/hit.mp3 -------------------------------------------------------------------------------- /static/music/pingpong/score.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/pingpong/score.mp3 -------------------------------------------------------------------------------- /static/music/pingpong/wall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/pingpong/wall.mp3 -------------------------------------------------------------------------------- /static/music/tic-tac-toe/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/tic-tac-toe/click.mp3 -------------------------------------------------------------------------------- /static/music/tic-tac-toe/win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/tic-tac-toe/win.wav -------------------------------------------------------------------------------- /static/music/wallbreaker/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/wallbreaker/gameover.mp3 -------------------------------------------------------------------------------- /static/music/wallbreaker/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymeeky/JS-games/HEAD/static/music/wallbreaker/move.mp3 --------------------------------------------------------------------------------