https://github.com/gitjuba/javascript-platformer
Attempt to make a decent platforming game
https://github.com/gitjuba/javascript-platformer
game javascript platform-game
Last synced: 17 days ago
JSON representation
Attempt to make a decent platforming game
- Host: GitHub
- URL: https://github.com/gitjuba/javascript-platformer
- Owner: gitjuba
- Created: 2017-08-27T18:38:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T23:18:06.000Z (about 3 years ago)
- Last Synced: 2025-08-29T03:32:27.889Z (7 months ago)
- Topics: game, javascript, platform-game
- Language: JavaScript
- Homepage: https://gitjuba.github.io/javascript-platformer
- Size: 1.59 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Platforming game
A (for now extremely) minimalistic platformer written in JavaScript.
## Usage
To play, open `docs/index.html` in a browser. To develop, run `npm install` to install dependencies and `npm run dev` to start the dev-server, see console output for URL. And `npm test` to run the little test suite (not all that useful atm...).
## Gameplay goal I (done)
A half-decent basic platformer with single-screen levels with simple goals, a start and an end.
See [this GH project](https://github.com/gitjuba/javascript-platformer/projects/5).
## Gameplay goal II (in progress)
More involved levels, with more stuff to do than just reaching the goal. See [this project](https://github.com/gitjuba/javascript-platformer/projects/7).
This requires a more sophisticated level editor, see [this project](https://github.com/gitjuba/javascript-platformer/projects/4).
Also, before the game becomes too complicated, some code clean-up, refactoring and proper abstraction is in order, see [this project](https://github.com/gitjuba/javascript-platformer/projects/5).