https://github.com/akrantz01/multiplayer-game-server
A simple massively multiplayer online game server framework
https://github.com/akrantz01/multiplayer-game-server
gaming golang javascript multiplayer-server
Last synced: about 2 months ago
JSON representation
A simple massively multiplayer online game server framework
- Host: GitHub
- URL: https://github.com/akrantz01/multiplayer-game-server
- Owner: akrantz01
- License: agpl-3.0
- Created: 2018-08-06T23:14:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T22:47:37.000Z (about 7 years ago)
- Last Synced: 2025-02-15T01:16:34.216Z (over 1 year ago)
- Topics: gaming, golang, javascript, multiplayer-server
- Language: Go
- Size: 393 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Multiplayer Game Server
A simple multiplayer game server written in Golang 1.11 and designed for use in JavaScript ES6.
## Get the Server
### Option 1
Download it from the releases tab. [Quick link](https://github.com/akrantz01/mmos/releases/latest) to the most recent release.
### Option 2
Build a binary from the master branch. Make sure you have [Golang](https://golang.org) installed and use the following commands:
```text
go get
go build -o server
```
Find the executable file in the current folder named `server`. Currently, Ubuntu 18.04 and its variants are the only officially supported OSes, but most Linux flavors should work.
## Simple Example
You can find an example in the [/example](/example) directory.
## Links
* [Documentation](https://akrantz01.github.io/mmos/)
* [My GitHub](https://github.com/akrantz01)
* [My Website](https://www.alexkrantz.com)