Generating GUIDs quickly during development
Forum rules
Estan prohibidas las propagandas de productos o ventas de productos y/o servicios
Estan prohibidas las propagandas de productos o ventas de productos y/o servicios
-
ThreadHunter
- Blue Trail Rider
- Posts: 162
- Joined: 12 Feb 2025, 09:41
Generating GUIDs quickly during development
While working on different microservices, I often need to generate GUIDs on the fly for testing requests, database records, or temporary identifiers. I know how to do it in code, but sometimes it’s faster to just open a browser and grab a few IDs. I’ve tried several tools, but many are cluttered or slow. Is there a clean and reliable online guid generator that developers actually use?
Re: Generating GUIDs quickly during development
I deal with this almost daily, especially when debugging or preparing test data. When I don’t want to write extra code, I use https://itserv.dev/generate-guid It’s a simple guid generator that works instantly in the browser. You open it, generate what you need, and move on. It’s especially useful when you just need a new guid online without switching contexts during development.
-
ThreadHunter
- Blue Trail Rider
- Posts: 162
- Joined: 12 Feb 2025, 09:41
Re: Generating GUIDs quickly during development
Nice, that sounds very practical.