Generate URL-friendly unique IDs, one or in bulk. Runs entirely in your browser.
nanoid library: draws random bytes, keeps only the ones landing within the alphabet's range, and retries until the target length is reached — this avoids the bias a naive byte % alphabet.length would introduce whenever the alphabet size isn't a power of 2.curl -sS "https://devops.majbase.com/nanoid-generator/api?size=10&count=5"
Returns {"values": [...]}. Optional alphabet (default is the URL-safe A-Za-z0-9_-) and count (default 1, max 100).