Deploying Your Own Instance

The Bulk UUID Exporter is a static site, meaning you can host it anywhere for free or low cost. Start by cloning the repository from GitHub. This gives you the complete source with all pages, logic, and styles ready to customize.

For the simplest deployment, use GitHub Pages. Push the build folder to your gh-pages branch, and the site goes live at yourusername.github.io/repo-name. Enable Pages in repository settings, select the branch, and save. It auto-updates on every push.

Alternative Hosts

Netlify offers drag-and-drop deployment. Connect your GitHub repo, select the build command as npm run build, and publish directory as build. Free tier includes CDN, HTTPS, and custom domains. Vercel works similarly with zero-config for SvelteKit static sites.

If you prefer self-hosting, upload the build folder to any web server like Apache or Nginx. Point your domain to it, and enable gzip compression for faster loads. The site requires no backend, so even shared hosting works.

Customization Tips

Change the default UUID count in the code or add themes by editing the CSS variables. Want version-1 UUIDs instead? Swap the generation function accordingly. Since it's static, rebuild and redeploy for changes.

For enterprise use, host internally on a private server or intranet. This ensures compliance with data policies while providing the same instant access to team members.

Deployment takes minutes, and once live, it's infinitely scalable. No servers to maintain, no costs beyond basic hosting if needed.

Your tool, your server, your rules.