uuid
Last updated
Last updated
Simple, fast generation of RFC4122 UUIDS.
Features:
Support for version 1, 3, 4 and 5 UUIDs
Cross-platform
Uses cryptographically-strong random number APIs (when available)
Zero-dependency, small footprint (... but not this small)
[Deprecation warning: The use of require('uuid')
is deprecated and will not be supported after version 3.x of this module. Instead, use require('uuid/[v1|v3|v4|v5]')
as shown in the examples below.]
Then generate your uuid version of choice ...
Version 1 (timestamp):
Version 3 (namespace):
Version 4 (random):
Version 5 (namespace):
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) Time in milliseconds since unix Epoch. Default: The current time is used.
nsecs
- (Number between 0-9999) additional time, in 100-nanosecond units. Ignored if msecs
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 in buffer
at which to begin writing.
Returns buffer
, if specified, otherwise the string form of the UUID
Note: The default node id (the last 12 digits in the UUID) is generated once, randomly, on process startup, and then remains unchanged for the duration of the process.
Example: Generate string UUID with fully-specified options
Example: In-place generation of two binary IDs
Generate and return a RFC4122 v3 UUID.
name
- (String | Array[]) "name" to create UUID with
namespace
- (String | Array[]) "namespace" UUID either as a String or Array[16] of byte values
buffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written.
offset
- (Number) Starting index in buffer
at which to begin writing. Default = 0
Returns buffer
, if specified, otherwise the string form of the UUID
Example:
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 values
rng
- (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 in buffer
at which to begin writing.
Returns buffer
, if specified, otherwise the string form of the UUID
Example: Generate string UUID with predefined random
values
Example: Generate two IDs in a single buffer
Generate and return a RFC4122 v5 UUID.
name
- (String | Array[]) "name" to create UUID with
namespace
- (String | Array[]) "namespace" UUID either as a String or Array[16] of byte values
buffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written.
offset
- (Number) Starting index in buffer
at which to begin writing. Default = 0
Returns buffer
, if specified, otherwise the string form of the UUID
Example:
UUIDs can be generated from the command line with the uuid
command.
Type uuid --help
for usage details
Markdown generated from README_js.md by