https://github.com/erikpelli/minecraftlightserver
A Minecraft server reduced to the bone, to learn the concepts behind it.
https://github.com/erikpelli/minecraftlightserver
go minecraft minecraft-server server
Last synced: about 1 month ago
JSON representation
A Minecraft server reduced to the bone, to learn the concepts behind it.
- Host: GitHub
- URL: https://github.com/erikpelli/minecraftlightserver
- Owner: ErikPelli
- License: mit
- Created: 2021-05-18T17:39:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-25T17:28:59.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T20:49:33.436Z (about 2 months ago)
- Topics: go, minecraft, minecraft-server, server
- Language: Go
- Homepage:
- Size: 978 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinecraftLightServer
This is a Proof of Concept of a simple Minecraft server written in Go, that has a simple multiplayer world.## Version
This server actually supports only Minecraft 1.16.5 clients.## Purpose
This is a very simple server, which can help those who are making one to better understand how the basic things that compose it interact with each other.## Thanks
This project was inspired by:
- [ESP32 Minecraft Server](https://github.com/nikisalli/esp32-minecraft-server), a very simple Minecraft server written in C for the ESP32 development board.
- [Go-mc](https://github.com/Tnze/go-mc), a Minecraft library written in Go.
- [wiki vg](https://wiki.vg/Protocol), a website that has the documentation for every Minecraft package.Everything has been adapted and rewritten to make code easy to understand.
## Screenshots


## Changelog
- There can be only one username online at the same time
- Concurrent handling of clients
- Concurrent handling of client packets
- Support for player running
- Detection of a disconnected player is immediate### Changes for the future
- Support for chunk generation
- Support for mobs
- Game changes saving
- Support for more client packets
- Plugins