A web-based template generator for Hytale mods, inspired by Fabric MC's template generator.
Generate customized Hytale mod projects in seconds with your own mod name, package structure, and optional example code.
- Instant Generation: Create a complete mod template with one click
- Customizable: Set your mod name, package name, version, and more
- Example Code: Optionally include example commands and event handlers
- Dark/Light Theme: Automatically detects system theme preference
- Client-Side: All generation happens in the browser - no server required
- Node.js 18+
- npm or yarn
# Clone the repository
git clone https://github.com/your-repo/hytale-template-website.git
cd hytale-template-website
# Install dependencies
npm install
# Start the development server
npm run devThe app will be available at http://localhost:3000.
npm run build
npm startThe generated mod template includes:
YourMod/
├── src/main/java/your/package/
│ ├── YourMod.java # Main plugin class
│ ├── commands/
│ │ └── YourModCommand.java # Example command (optional)
│ └── events/
│ └── YourModEvent.java # Example event handler (optional)
├── src/main/resources/
│ └── manifest.json # Mod manifest
├── build.gradle # Gradle build configuration
├── gradle.properties # Mod properties
├── settings.gradle # Project settings
├── gradlew / gradlew.bat # Gradle wrapper
└── README.md # Documentation
The base template is stored in /public/hytale-template.zip. To update the template:
- Create your template mod project
- Remove build artifacts (
.gradle/,build/,.idea/, etc.) - Zip the project
- Replace
/public/hytale-template.zip
- Next.js 16 - React framework
- TailwindCSS 4 - Styling
- JSZip - Client-side ZIP generation
- TypeScript - Type safety
This project is available under the CC0 License - feel free to use it however you like!
NOT AN OFFICIAL HYTALE PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH HYPIXEL STUDIOS.