All Projects → Cryptkeeper → Minetrack

Cryptkeeper / Minetrack

Licence: mit
Minetrack makes it easy to keep an eye on your favorite Minecraft servers.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Minetrack

Sevtech Ages
SevTech: Ages is a massive Minecraft modpack packed with content and progression.
Stars: ✭ 201 (-17.28%)
Mutual labels:  minecraft
Terraincontrol
Minecraft Terrain Generator for SpigotMC and Forge
Stars: ✭ 216 (-11.11%)
Mutual labels:  minecraft
Craftbook
🔧 Machines, ICs, PLCs, and more!
Stars: ✭ 226 (-7%)
Mutual labels:  minecraft
Techreborn
Tech Reborn is a completely standalone tech mod including tools and machines to gather resources, process materials, and progress through the mod. https://www.curseforge.com/minecraft/mc-mods/techreborn
Stars: ✭ 205 (-15.64%)
Mutual labels:  minecraft
Terraforged
Mod repo for TerraForged
Stars: ✭ 213 (-12.35%)
Mutual labels:  minecraft
Hyperium
Hyperium, Free Minecraft client with HUDs and Popular mods
Stars: ✭ 217 (-10.7%)
Mutual labels:  minecraft
Chunkstories
Somewhat fancy blocky game engine written in Kotlin
Stars: ✭ 199 (-18.11%)
Mutual labels:  minecraft
Towny
Towny Advanced Minecraft plugin for Bukkit/Spigot.
Stars: ✭ 236 (-2.88%)
Mutual labels:  minecraft
Crafatar
A blazing fast API for Minecraft faces
Stars: ✭ 212 (-12.76%)
Mutual labels:  minecraft
Terrafirmacraft
TFC-TNG → A port of the TFC Classic to 1.12+
Stars: ✭ 223 (-8.23%)
Mutual labels:  minecraft
Pocketmine Mp
A server software for Minecraft: Bedrock Edition in PHP
Stars: ✭ 2,594 (+967.49%)
Mutual labels:  minecraft
Hydrogen Fabric
Things of which are too dangerous to put in Lithium.
Stars: ✭ 206 (-15.23%)
Mutual labels:  minecraft
Minecraft Data
Language independent module providing minecraft data for minecraft clients, servers and libraries.
Stars: ✭ 217 (-10.7%)
Mutual labels:  minecraft
Adventure
A user-interface library, formerly known as text, for Minecraft: Java Edition
Stars: ✭ 199 (-18.11%)
Mutual labels:  minecraft
Refinedstorage
An elegant solution to your hoarding problem
Stars: ✭ 228 (-6.17%)
Mutual labels:  minecraft
Waterdog
Waterdog, a Yesdog fork of Waterfall/BungeeCord that adds Bedrock support.
Stars: ✭ 200 (-17.7%)
Mutual labels:  minecraft
Fastlogin
Checks if a minecraft player has a valid paid account. If so, they can skip offline authentication automatically. (premium auto login)
Stars: ✭ 216 (-11.11%)
Mutual labels:  minecraft
Sponge
The SpongeAPI implementation targeting vanilla Minecraft and 3rd party platforms.
Stars: ✭ 241 (-0.82%)
Mutual labels:  minecraft
Boatapp
Environment for running Minecraft Java Edition on Android
Stars: ✭ 230 (-5.35%)
Mutual labels:  minecraft
Atlauncher
ATLauncher is a Launcher for Minecraft which integrates multiple different ModPacks to allow you to download and install ModPacks easily and quickly.
Stars: ✭ 219 (-9.88%)
Mutual labels:  minecraft

Minetrack

Minetrack makes it easy to keep an eye on your favorite Minecraft servers. Simple and hackable, Minetrack easily runs on any hardware. Use it for monitoring, analytics, or just for fun. Check it out.

This project is not actively supported!

This project is not actively supported. Pull requests will be reviewed and merged (if accepted), but issues might not be addressed outside of fixes provided by community members. Please share any improvements or fixes you've made so everyone can benefit from them.

Features

  • 🚀 Real time Minecraft server player count tracking with customizable update speed.
  • 📝 Historical player count logging with 24 hour peak and player count record tracking.
  • 📈 Historical graph with customizable time frame.
  • 📦 Out of the box included dashboard with various customizable sorting and viewing options.
  • 📱(Decent) mobile support.
  • 🕹 Supports both Minecraft Java Edition and Minecraft Bedrock Edition.
  • 🚨 minecraft.net and mojang.com services status monitoring to watch for interruptions.

Community Showcase

You can find a list of community hosted instances below. Want to be listed here? Add yourself in a pull request!

Updates

For updates and release notes, please read the CHANGELOG.

Migrating to Minetrack 5? See the migration guide.

Installation

  1. Node 12.4.0+ is required (you can check your version using node -v)
  2. Make sure everything is correct in config.json.
  3. Add/remove servers by editing the servers.json file
  4. Run npm install
  5. Run npm run build (this bundles assets/ into dist/)
  6. Run node main.js to boot the system (may need sudo!)

(There's also install.sh and start.sh, but they may not work for your OS.)

Database logging is disabled by default. You can enable it in config.json by setting logToDatabase to true. This requires sqlite3 drivers to be installed.

Docker

Minetrack can be built and run with Docker from this repository in several ways:

Build and deploy directly with Docker:

# build image with name minetrack and tag latest
docker build . --tag minetrack:latest
# start container, delete on exit
# publish container port 8080 on host port 80
docker run --rm --publish 80:8080 minetrack:latest

The published port can be changed by modifying the parameter argument, e.g.:
Publish to host port 8080: --publish 8080:8080
Publish to localhost (thus prohibiting external access): --publish 127.0.0.1:8080:8080

Build and deploy with docker-compose:

# build and start service
docker-compose up --build
# stop service and remove artifacts
docker-compose down

Nginx reverse proxy

The following configuration enables Nginx to act as reverse proxy for a Minetrack instance that is available at port 8080 on localhost:

server {
    server_name minetrack.example.net;
    listen 80;
    location / {
        proxy_pass http://localhost:8080;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].