Universal Minecraft Mod Template Generator

May 20, 2025 ยท View on GitHub

A Node.js application that generates customized Minecraft mod templates for multiple mod loaders (Fabric, Forge, NeoForge) and Minecraft versions.

How to Use

  1. Visit the website
  2. Fill in your mod details:
    • Mod Name
    • Mod ID (lowercase letters, numbers, and underscores only)
    • Package Name (valid Java package name)
  3. Select the Minecraft versions you want to support
  4. Select the mod loaders you want to support
  5. Click "Generate Template"
  6. Download your customized template

Development

This is a Node.js application deployed on Vercel.

Technologies Used

  • Node.js and Express
  • Vercel (Hosting and Serverless Functions)
  • HTML/CSS/JavaScript
  • JSZip - For handling ZIP files
  • FileSaver.js - For downloading files

Local Development

  1. Clone this repository
  2. Install dependencies: npm install
  3. Create a .env file based on .env.example
  4. Run the development server: npm run dev
  5. Open http://localhost:3000 in your browser

Vercel Deployment

  1. Install Vercel CLI: npm i -g vercel (if not using the one included in devDependencies)
  2. Login to Vercel: vercel login
  3. Deploy to Vercel: npm run deploy

Updating the Template

The template is automatically updated every 24 hours and fetched from GitHub.

Acknowledgments