{"id":89186,"date":"2026-06-05T05:17:26","date_gmt":"2026-06-05T02:17:26","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/"},"modified":"2026-06-05T05:17:26","modified_gmt":"2026-06-05T02:17:26","slug":"justenoughbackups-jeb","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/","title":{"rendered":"Just Enough Backups (JEB)"},"content":{"rendered":"<p>![Just Enough Backups Banner](https:\/\/cdn.modrinth.com\/data\/cached_images\/a9b74e1a966f7e327014c42a28ee0425e3e3d620_0.webp)<\/p>\n<p>Just Enough Backups is a Fabric mod that adds server-side world backups with a usable in-game workflow.<\/p>\n<p>It supports:<\/p>\n<p>&#8211; full, partial, and differential backups<br \/>\n&#8211; manual backups through commands and UI<br \/>\n&#8211; automatic scheduled backups<br \/>\n&#8211; configurable public backup\/restore announcements<br \/>\n&#8211; retention by backup count<br \/>\n&#8211; retention by total backup size per world<br \/>\n&#8211; restore preparation from the backup browser<br \/>\n&#8211; a configurable client HUD popup with live preview<br \/>\n&#8211; optional Mod Menu integration<\/p>\n<p>The mod is designed to keep the actual backup logic on the server side while exposing management and configuration through a client UI.<\/p>\n<p>## Features<\/p>\n<p>### Backup types<\/p>\n<p>&#8211; **Full**: stores a complete snapshot of the world.<br \/>\n&#8211; **Partial**: stores changes relative to a base backup.<br \/>\n&#8211; **Differential**: stores changes relative to a base backup, while keeping a separate retention bucket from partial backups.<\/p>\n<p>Dependencies between backups are tracked. Retention and delete operations respect those dependencies, so required base backups are preserved when newer partial or differential backups still depend on them.<\/p>\n<p>### Automatic backups<\/p>\n<p>Automatic backups are driven by the scheduler and can be configured to:<\/p>\n<p>&#8211; run every `X` minutes (60 by default)<br \/>\n&#8211; send one optional public warning before an automatic backup starts<br \/>\n&#8211; pause when no players have been online since the last backup<br \/>\n&#8211; run on server start<br \/>\n&#8211; run on server stop<\/p>\n<p>Public announcements can be sent to chat, sent to the action bar, or disabled.<\/p>\n<p>### Retention policy<\/p>\n<p>Retention can be configured in two ways at the same time:<\/p>\n<p>&#8211; **count-based retention**<br \/>\n  &#8211; keep the newest `X` full backups<br \/>\n  &#8211; keep the newest `X` partial backups<br \/>\n  &#8211; keep the newest `X` differential backups<br \/>\n&#8211; **size cap per world**<br \/>\n  &#8211; optional hard cap for the total size of a world&#8217;s backup folder<br \/>\n  &#8211; applied to the final published backup set<br \/>\n  &#8211; respects dependency chains<\/p>\n<p>If a new backup would exceed the configured space cap even after deleting every backup that is allowed to be removed, creation fails instead of publishing an invalid final state.<\/p>\n<p>### Backup management UI<\/p>\n<p>The backup browser includes:<\/p>\n<p>&#8211; refresh<br \/>\n&#8211; create backup<br \/>\n&#8211; rename backup<br \/>\n&#8211; delete backup<br \/>\n&#8211; restore backup<br \/>\n&#8211; dependency-aware inline details<br \/>\n&#8211; search\/filtering<\/p>\n<p>Manual backup creation supports a custom file name from both the command line and the UI.<\/p>\n<p>### Config UI and popup preview<\/p>\n<p>The config screen exposes:<\/p>\n<p>&#8211; backup mode and scheduler options<br \/>\n&#8211; retention rules<br \/>\n&#8211; permission level<br \/>\n&#8211; integrity mode<br \/>\n&#8211; backup directory<br \/>\n&#8211; popup text, colors, channels, and layout<\/p>\n<p>The popup preview screen lets you move and preview the HUD state before saving.<\/p>\n<p>## Commands<\/p>\n<p>The root command is:<\/p>\n<p>&#8220;`text<br \/>\n\/jeb<br \/>\n&#8220;`<\/p>\n<p>Available commands:<\/p>\n<p>&#8220;`text<br \/>\n\/jeb now<br \/>\n\/jeb now <name><\/p>\n<p>\/jeb create full<br \/>\n\/jeb create full <name><br \/>\n\/jeb create partial<br \/>\n\/jeb create partial <name><br \/>\n\/jeb create differential<br \/>\n\/jeb create differential <name><\/p>\n<p>\/jeb list<br \/>\n\/jeb next<br \/>\n\/jeb restore <backup><br \/>\n\/jeb config reload<br \/>\n&#8220;`<\/p>\n<p>Notes:<\/p>\n<p>&#8211; `<name>` is optional and becomes the real `.zip` file name after sanitization.<br \/>\n&#8211; `<backup>` is the visible backup name, with or without the `.zip` suffix. Tab completion suggests the visible name.<br \/>\n&#8211; restore is prepared asynchronously and then the server shuts down so the restore can be applied safely on the next startup.<br \/>\n&#8211; command access follows the configured permission level.<\/p>\n<p>## Default keybindings<\/p>\n<p>Client-side keybindings:<\/p>\n<p>&#8211; `B`: open backup management<br \/>\n&#8211; `N`: open config screen<\/p>\n<p>These are regular Minecraft keybindings and can be changed in Controls.<\/p>\n<p>## Configuration<\/p>\n<p>The mod writes its config file to:<\/p>\n<p>&#8220;`text<br \/>\nconfig\/justenoughbackups.json<br \/>\n&#8220;`<\/p>\n<p>Main config areas:<\/p>\n<p>&#8211; `backupMode`<br \/>\n&#8211; `automaticBackupsEnabled`<br \/>\n&#8211; `pauseAutomaticBackupsWithoutPlayers`<br \/>\n&#8211; `backupOnServerStart`<br \/>\n&#8211; `backupOnServerStop`<br \/>\n&#8211; `automaticIntervalMinutes`<br \/>\n&#8211; `automaticBackupWarningEnabled`<br \/>\n&#8211; `automaticBackupWarningMinutes`<br \/>\n&#8211; `commandPermissionLevel`<br \/>\n&#8211; `messageChannel`<br \/>\n&#8211; `integrityMode`<br \/>\n&#8211; `backupDirectory`<br \/>\n&#8211; `retention`<br \/>\n  &#8211; `full`<br \/>\n  &#8211; `incremental`<br \/>\n  &#8211; `differential`<br \/>\n  &#8211; `maxTotalSizeMb`<br \/>\n&#8211; `popup`<\/p>\n<p>`backupDirectory` may be relative to the game directory or an absolute path.<\/p>\n<p>## Backup naming<\/p>\n<p>Manual backups support custom names:<\/p>\n<p>&#8211; from commands: `\/jeb now My backup`<br \/>\n&#8211; from the create dialog in the backup UI<\/p>\n<p>If no custom name is provided, the mod uses the automatic naming scheme based on type and timestamp.<\/p>\n<p>Rename uses the same sanitization rules as manual creation to keep naming behavior consistent.<\/p>\n<p>## Optional:<\/p>\n<p>&#8211; Mod Menu for a cleaner config entry point<\/p>\n<p>## License<\/p>\n<p>This project is licensed under the [MIT License](LICENSE).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Just Enough Backups is a Fabric mod that adds server-side world backups with a usable in-game workflow.<\/p>\n","protected":false},"featured_media":89187,"template":"","meta":{"_minecraft_slug":"justenoughbackups-jeb","_minecraft_project_id":"ctV8T1ZK","_minecraft_author":"frandm16","_minecraft_license":"MIT","_minecraft_downloads":73,"_minecraft_follows":1,"_minecraft_client_side":"optional","_minecraft_server_side":"optional","_minecraft_storage_type":"zip","_minecraft_archive_name":"justenoughbackups-jeb.zip","_minecraft_size_bytes":2360923,"_minecraft_version_count":10,"_minecraft_updated_at":"2026-05-16T16:59:52.381716Z","_minecraft_date_created":"2026-05-13T02:10:59.998651Z","_minecraft_date_modified":"2026-05-14T00:45:19.205385Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/justenoughbackups-jeb","_minecraft_icon_attachment_id":89187,"_minecraft_imported_at":"2026-06-05T02:17:27+00:00","_minecraft_import_hash":"230d8b160d400f6974bfdb68690b96be","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,126,91,92],"mod_loader":[99],"minecraft_version":[62,37,73,74,38,78,83,167,163],"class_list":["post-89186","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-management","mod_category-storage","mod_category-utility","mod_loader-fabric","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Just Enough Backups (JEB) - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Just Enough Backups (JEB) - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Just Enough Backups is a Fabric mod that adds server-side world backups with a usable in-game workflow.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/\",\"name\":\"Just Enough Backups (JEB) - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp\",\"datePublished\":\"2026-06-05T02:17:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/justenoughbackups-jeb\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Just Enough Backups (JEB)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Just Enough Backups (JEB) - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/","og_locale":"en_US","og_type":"article","og_title":"Just Enough Backups (JEB) - Minecraft","og_description":"Just Enough Backups is a Fabric mod that adds server-side world backups with a usable in-game workflow.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/","name":"Just Enough Backups (JEB) - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp","datePublished":"2026-06-05T02:17:26+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/justenoughbackups-jeb-icon-cc64d2dbb78b1921226f006d6a23a81f7d2039e8_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/justenoughbackups-jeb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Just Enough Backups (JEB)"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/89186","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/89187"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=89186"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=89186"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=89186"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=89186"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}