KubeJS Tweaks

This is an addon for KubeJS to abstract some common usage of KubeJS for heavily modded modpacks. Also applies hotfix when needed.

File Details

kubejstweaks-1.0.6.jar

  • R
  • Jan 24, 2026
  • 411.88 KB
  • 4.4M
  • 1.21.1
  • NeoForge

File Name

kubejstweaks-1.0.6.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

NeoForge

implementation "curse.maven:kubejs-tweaks-1306367:7516288"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

add KJSTweaks.curseForgeGetEndpoint

  • usage is: KJSTweaks.curseForgeGetEndpoint(url, executor, callbackWithJsonResponse)
KJSTweaks.curseForgeGetEndpoint("v1/mods/925200/files?pageSize=1", Client, response => {
  let packName = response.get("data").get(0).get("displayName").asString
  console.log("Latest filename from ID 925200 is " + packName)
})