An open API service indexing awesome lists of open source software.

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

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.