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

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

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)