nuuid
A Nim source only UUID generator
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install nuuid
choosenim install nuuid
git clone https://github.com/yglukhov/nim-only-uuid
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| nuuid | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/yglukhov/nim-only-uuid |
|---|---|
| Homepage | https://github.com/yglukhov/nim-only-uuid |
| Registry Source | nimble_official |
README
nim-only-uuid
A Nim source only UUID generator
A loose translation of this Javascript function (http://www.broofa.com/Tools/Math.uuid.js)
Math.uuidCompact = function() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
};
Usage:
import nuuid
echo generateUUID()
Installation
nimble install nuuid