uuid
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.]
Quickstart - CommonJS (Recommended)
npm install uuidThen generate your uuid version of choice ...
Version 1 (timestamp):
const uuidv1 = require('uuid/v1');
uuidv1(); // ⇨ '2c5ea4c0-4067-11e9-8bad-9b1deb4d3b7d'Version 3 (namespace):
const uuidv3 = require('uuid/v3');
// ... using predefined DNS namespace (for domain names)
uuidv3('hello.example.com', uuidv3.DNS); // ⇨ '9125a8dc-52ee-365b-a5aa-81b0b3681cf6'
// ... using predefined URL namespace (for, well, URLs)
uuidv3('http://example.com/hello', uuidv3.URL); // ⇨ 'c6235813-3ba4-3801-ae84-e0a6ebb7d138'
// ... using a custom namespace
//
// Note: Custom namespaces should be a UUID string specific to your application!
// E.g. the one here was generated using this modules `uuid` CLI.
const MY_NAMESPACE = '1b671a64-40d5-491e-99b0-da01ff1f3341';
uuidv3('Hello, World!', MY_NAMESPACE); // ⇨ 'e8b5a51d-11c8-3310-a6ab-367563f20686'Version 4 (random):
Version 5 (namespace):
API
Version 1
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 ifmsecsis 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 inbufferat 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
Version 3
Generate and return a RFC4122 v3 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 inbufferat which to begin writing. Default = 0
Returns buffer, if specified, otherwise the string form of the UUID
Example:
Version 4
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 inbufferat 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
Version 5
Generate and return a RFC4122 v5 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 inbufferat which to begin writing. Default = 0
Returns buffer, if specified, otherwise the string form of the UUID
Example:
Command Line
UUIDs can be generated from the command line with the uuid command.
Type uuid --help for usage details
Testing
Markdown generated from README_js.md by 
Last updated
Was this helpful?