Dev tools
Quick helpers—more sections can land here over time.
Emoji commits
Click a tile to copy a git commit -m "…" prefix. Finish the message in your terminal.
UUID generator
Random UUID for testing. Copy the snippet into Bruno / Postman to use {{randUuid}}.
const { v4: uuidv4 } = require('uuid');
const uuid = uuidv4();
bru.setVar("randUuid", uuid);
const uuid = crypto.randomUUID();
pm.environment.set("randUuid", uuid);
JSON Formatter
Drop in your JSON. Beautify just makes it look nice. Hit (readable) if you wanna see parsed header/bodyfields for real.