https://github.com/ignema/ping-pong-js
A minimal ping pong game with HTML Canvas and JavaScript
https://github.com/ignema/ping-pong-js
game-development html-canvas javascript
Last synced: 24 days ago
JSON representation
A minimal ping pong game with HTML Canvas and JavaScript
- Host: GitHub
- URL: https://github.com/ignema/ping-pong-js
- Owner: Ignema
- Created: 2021-02-15T17:08:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-15T19:25:07.000Z (over 5 years ago)
- Last Synced: 2025-01-11T22:23:11.729Z (over 1 year ago)
- Topics: game-development, html-canvas, javascript
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ping-pong-js
A minimal ping pong game with HTML Canvas and JavaScript
To run locally you need to deploy the website on a server. There are many small options like:
- VSCode Live Server Extension (It does all the work for you...)
- Python http module: You can simply navigate to the folder where you cloned the project and then run this command
```
python -m http.server 8080
```
The app will be in `localhost:8080`
- Node.js server: This will require some coding but if you know some javascript you will be fine.