Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plutov/go-snake-telnet
Snake Game over telnet protocol in Go
https://github.com/plutov/go-snake-telnet
go snake telnet
Last synced: 2 months ago
JSON representation
Snake Game over telnet protocol in Go
- Host: GitHub
- URL: https://github.com/plutov/go-snake-telnet
- Owner: plutov
- License: mit
- Created: 2017-10-10T09:32:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T15:08:07.000Z (4 months ago)
- Last Synced: 2024-10-16T04:19:11.699Z (3 months ago)
- Topics: go, snake, telnet
- Language: Go
- Homepage:
- Size: 35.2 KB
- Stars: 32
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Snake Game over Telnet in Go
### Run it with go
```bash
go get github.com/plutov/go-snake-telnet
go-snake-telnet
```## Run with Docker
```bash
docker build -t snake-telnet .
docker run -d -p 8080:8080 snake-telnet
```## Play!
Make sure to install telnet first:
```bash
brew install telnet
```Then connect to the game:
```bash
telnet 127.0.0.1 8080
```### Tests
```
go test ./... -bench=.
```