UUID-PACKAGE
ALL THE CODE IN THIS PACKAGE COMES FROM THELike seriously, nothing in this package is made by me
uuid-browser
Simple, fast generation of RFC4122 UUIDS.
Features:
- Support for version 1, 4 and 5 UUIDs
- Cross-platform
- Uses cryptographically-strong random number APIs (when available)
- Zero-dependency, small footprint (... but not this small)
Quickstart - CommonJS (Recommended)
npm install uuid
Then generate your uuid version of choice ...
Version 1 (timestamp):
const uuidv1 = ;; // -> '6c84fb90-12c4-11e1-840d-7b25c5ee775a'
Version 4 (random):
const uuidv4 = ;; // -> '110ec58a-a0f2-4ac4-8393-c866d813b8d1'
Version 5 (namespace):
const uuidv5 = ; // ... using predefined DNS namespace (for domain names)); // -> 'fdda765f-fc57-5604-a269-52a7df8164ec' // ... using predefined URL namespace (for, well, URLs); // -> '3bbcee75-cecc-5b56-8031-b6641c1ed1f1' // ... using a custom namespaceconst MY_NAMESPACE = '<UUID string you previously generated elsewhere>';; // -> '90123e1c-7512-523e-bb28-76fab9f2f73d'
Quickstart - Browser-ready Versions
Browser-ready versions of this module are available via wzrd.in.
For version 1 uuids:
For version 4 uuids:
For version 5 uuids:
API
Version 1
const uuidv1 = ; // Allowed arguments;;;
Generate and return a RFC4122 v1 (timestamp-based) UUID.
-
options
- (Object) Optional uuid state to apply. Properties may include:node
- (Array) Node id as Array of 6 bytes (per 4.1.6). Default: Randomly generated ID. See note 1.clockseq
- (Number between 0 - 0x3fff) RFC clock sequence. Default: An internally maintained clockseq is used.msecs
- (Number | Date) Time in milliseconds since unix Epoch. Default: The current time is used.nsecs
- (Number between 0-9999) additional time, in 100-nanosecond units. Ignored ifmsecs
is unspecified. Default: internal uuid counter is used, as per 4.2.1.2.
-
buffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written. -
offset
- (Number) Starting index inbuffer
at which to begin writing.
Returns buffer
, if specified, otherwise the string form of the UUID
Note: The id is generated guaranteed to stay constant for the lifetime of the current JS runtime. (Future versions of this module may use persistent storage mechanisms to extend this guarantee.)
Example: Generate string UUID with fully-specified options
; // -> "710b962e-041c-11e1-9234-0123456789ab"
Example: In-place generation of two binary IDs
// Generate two ids in an arrayconst arr = 32; // -> []; // -> [02 a2 ce 90 14 32 11 e1 85 58 0b 48 8e 4f c1 15]; // -> [02 a2 ce 90 14 32 11 e1 85 58 0b 48 8e 4f c1 15 02 a3 1c b0 14 32 11 e1 85 58 0b 48 8e 4f c1 15]
Version 4
const uuidv4 = // Allowed arguments;;;
Generate and return a RFC4122 v4 UUID.
options
- (Object) Optional uuid state to apply. Properties may include:random
- (Number[16]) Array of 16 numbers (0-255) to use in place of randomly generated valuesrng
- (Function) Random # generator function that returns an Array[16] of byte values (0-255)
buffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written.offset
- (Number) Starting index inbuffer
at which to begin writing.
Returns buffer
, if specified, otherwise the string form of the UUID
Example: Generate string UUID with fully-specified options
uuid;// -> "109156be-c4fb-41ea-b1b4-efe1671c5836"
Example: Generate two IDs in a single buffer
const buffer = 32; // (or 'new Buffer' in node.js)uuid;uuid;
Version 5
const uuidv5 = ; // Allowed arguments;;;
Generate and return a RFC4122 v4 UUID.
name
- (String | Array[]) "name" to create UUID withnamespace
- (String | Array[]) "namespace" UUID either as a String or Array[16] of byte valuesbuffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written.offset
- (Number) Starting index inbuffer
at which to begin writing. Default = 0
Returns buffer
, if specified, otherwise the string form of the UUID
Example:
// Generate a unique namespace (typically you would do this once, outside of// your project, then bake this value into your code)const uuidv4 = ;const MY_NAMESPACE = ; // // Generate a couple namespace uuidsconst uuidv5 = ;;;
Testing
npm test
Deprecated / Browser-ready API
The API below is available for legacy purposes and is not expected to be available post-3.X
const uuid = ; uuid; // alias of uuid/v1uuid; // alias of uuid/v4; // alias of uuid/v4 // uuid.v5() is not supported in this API
Legacy node-uuid package
The code for the legacy node-uuid package is available in the node-uuid
branch.