https://github.com/nuclearredeye/pong
A browser based implementation of the Atari classic Pong
https://github.com/nuclearredeye/pong
Last synced: about 1 month ago
JSON representation
A browser based implementation of the Atari classic Pong
- Host: GitHub
- URL: https://github.com/nuclearredeye/pong
- Owner: NuclearRedeye
- License: mit
- Created: 2020-09-11T15:27:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T15:50:25.000Z (almost 6 years ago)
- Last Synced: 2025-02-28T22:19:54.101Z (over 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Pong
A browser based implementation of the Atari classic Pong
# Getting Started
You can get up and running quickly with...
```
npm install
npm start
```
Then open http://localhost:5000 in your browser.
Or, if you are using [Visual Studio Code](https://code.visualstudio.com/) then the included config means you can simply hit F5 to get going.
# Docker
You can also package the entire application in a docker container, ready to deploy.
```
npm run build
docker build . -t pong:dev
docker run -p 8080:80 pong:dev
```
Then open http://localhost:8080 in your browser.