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

https://github.com/makosai/go-mud

A multiplayer MUD game made with Go & Socket/WebRTC. Run in your Terminal, Browser, or on Windows.
https://github.com/makosai/go-mud

game game-engine games go golang mud mud-server socket socket-programming sockets terminal terminal-based terminal-game text-based-game tui tui-game web webrtc windows

Last synced: 2 months ago
JSON representation

A multiplayer MUD game made with Go & Socket/WebRTC. Run in your Terminal, Browser, or on Windows.

Awesome Lists containing this project

README

          

# Go-MUD

A text-based MUD written in Go. Features multiplayer with WebRTC and Sockets.

# Running without executable

```sh
go run main.go engine.go
```

![Alt Text](/docs/showcase.png)

# Building Go-MUD

## Building with goreleaser

```sh
goreleaser release --snapshot --clean
```

Check the dist folder for the executables.

## Installing goreleaser

> Docs: https://goreleaser.com/install/

npm:
```sh
npm i -g @goreleaser/goreleaser
```

chocolatey:
```sh
choco install goreleaser
```

winget:
```sh
winget install goreleaser
```

apt:
```sh
sudo apt install goreleaser
```

go install:
```sh
go install github.com/goreleaser/goreleaser/v2@latest
```