What is a UUID?
A Universally Unique Identifier (UUID) is a 128-bit label used for information in computer systems. Version 4 UUIDs are generated using random numbers, making them practically unique. The probability of generating the same UUID twice is extremely low.
🆔 Database Keys
Use UUIDs as primary keys to prevent collisions in distributed systems.
🔗 API Tokens
Generate unique identifiers for API sessions and tokens.
🔒 Secure
Generated locally using `crypto.getRandomValues`.