UNPKG

20.5 kBMarkdownView Raw
1<!--
2 -- This file is auto-generated from README_js.md. Changes should be made there.
3 -->
4
5
6# uuid [![CI](https://github.com/uuidjs/uuid/workflows/CI/badge.svg)](https://github.com/uuidjs/uuid/actions?query=workflow%3ACI) [![Browser](https://github.com/uuidjs/uuid/workflows/Browser/badge.svg)](https://github.com/uuidjs/uuid/actions?query=workflow%3ABrowser)
7
8For the creation of [RFC9562](https://www.rfc-editor.org/rfc/rfc9562.html) (formally [RFC4122](https://www.rfc-editor.org/rfc/rfc4122.html)) UUIDs
9
10- **Complete** - Support for all RFC9562 (nee RFC4122) UUID versions
11- **Cross-platform** - Support for ...
12 - CommonJS, [ECMAScript Modules](#ecmascript-modules) and [CDN builds](#cdn-builds)
13 - NodeJS 16+ ([LTS releases](https://github.com/nodejs/Release))
14 - Chrome, Safari, Firefox, Edge browsers
15 - Webpack and rollup.js module bundlers
16 - [React Native / Expo](#react-native--expo)
17- **Secure** - Cryptographically-strong random values
18- **Small** - Zero-dependency, small footprint, plays nice with "tree shaking" packagers
19- **CLI** - Includes the [`uuid` command line](#command-line) utility
20
21<!-- prettier-ignore -->
22> [!NOTE]
23> Upgrading from `uuid@3`? Your code is probably okay, but check out [Upgrading From `uuid@3`](#upgrading-from-uuid3) for details.
24
25<!-- prettier-ignore -->
26> [!NOTE]
27> Only interested in creating a version 4 UUID? You might be able to use [`crypto.randomUUID()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID), eliminating the need to install this library.
28
29## Quickstart
30
31To create a random UUID...
32
33**1. Install**
34
35```shell
36npm install uuid
37```
38
39**2. Create a UUID** (ES6 module syntax)
40
41```javascript
42import { v4 as uuidv4 } from 'uuid';
43uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
44```
45
46... or using CommonJS syntax:
47
48```javascript
49const { v4: uuidv4 } = require('uuid');
50uuidv4(); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
51```
52
53For timestamp UUIDs, namespace UUIDs, and other options read on ...
54
55## API Summary
56
57| | | |
58| --- | --- | --- |
59| [`uuid.NIL`](#uuidnil) | The nil UUID string (all zeros) | New in `uuid@8.3` |
60| [`uuid.MAX`](#uuidmax) | The max UUID string (all ones) | New in `uuid@9.1` |
61| [`uuid.parse()`](#uuidparsestr) | Convert UUID string to array of bytes | New in `uuid@8.3` |
62| [`uuid.stringify()`](#uuidstringifyarr-offset) | Convert array of bytes to UUID string | New in `uuid@8.3` |
63| [`uuid.v1()`](#uuidv1options-buffer-offset) | Create a version 1 (timestamp) UUID | |
64| [`uuid.v1ToV6()`](#uuidv1tov6uuid) | Create a version 6 UUID from a version 1 UUID | New in `uuid@10` |
65| [`uuid.v3()`](#uuidv3name-namespace-buffer-offset) | Create a version 3 (namespace w/ MD5) UUID | |
66| [`uuid.v4()`](#uuidv4options-buffer-offset) | Create a version 4 (random) UUID | |
67| [`uuid.v5()`](#uuidv5name-namespace-buffer-offset) | Create a version 5 (namespace w/ SHA-1) UUID | |
68| [`uuid.v6()`](#uuidv6options-buffer-offset) | Create a version 6 (timestamp, reordered) UUID | New in `uuid@10` |
69| [`uuid.v6ToV1()`](#uuidv6tov1uuid) | Create a version 1 UUID from a version 6 UUID | New in `uuid@10` |
70| [`uuid.v7()`](#uuidv7options-buffer-offset) | Create a version 7 (Unix Epoch time-based) UUID | New in `uuid@10` |
71| ~~[`uuid.v8()`](#uuidv8)~~ | "Intentionally left blank" | |
72| [`uuid.validate()`](#uuidvalidatestr) | Test a string to see if it is a valid UUID | New in `uuid@8.3` |
73| [`uuid.version()`](#uuidversionstr) | Detect RFC version of a UUID | New in `uuid@8.3` |
74
75## API
76
77### uuid.NIL
78
79The nil UUID string (all zeros).
80
81Example:
82
83```javascript
84import { NIL as NIL_UUID } from 'uuid';
85
86NIL_UUID; // ⇨ '00000000-0000-0000-0000-000000000000'
87```
88
89### uuid.MAX
90
91The max UUID string (all ones).
92
93Example:
94
95```javascript
96import { MAX as MAX_UUID } from 'uuid';
97
98MAX_UUID; // ⇨ 'ffffffff-ffff-ffff-ffff-ffffffffffff'
99```
100
101### uuid.parse(str)
102
103Convert UUID string to array of bytes
104
105| | |
106| --------- | ---------------------------------------- |
107| `str` | A valid UUID `String` |
108| _returns_ | `Uint8Array[16]` |
109| _throws_ | `TypeError` if `str` is not a valid UUID |
110
111<!-- prettier-ignore -->
112> [!NOTE]
113> Ordering of values in the byte arrays used by `parse()` and `stringify()` follows the left &Rarr; right order of hex-pairs in UUID strings. As shown in the example below.
114
115Example:
116
117```javascript
118import { parse as uuidParse } from 'uuid';
119
120// Parse a UUID
121const bytes = uuidParse('6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b');
122
123// Convert to hex strings to show byte order (for documentation purposes)
124[...bytes].map((v) => v.toString(16).padStart(2, '0')); // ⇨
125 // [
126 // '6e', 'c0', 'bd', '7f',
127 // '11', 'c0', '43', 'da',
128 // '97', '5e', '2a', '8a',
129 // 'd9', 'eb', 'ae', '0b'
130 // ]
131```
132
133### uuid.stringify(arr[, offset])
134
135Convert array of bytes to UUID string
136
137| | |
138| -------------- | ---------------------------------------------------------------------------- |
139| `arr` | `Array`-like collection of 16 values (starting from `offset`) between 0-255. |
140| [`offset` = 0] | `Number` Starting index in the Array |
141| _returns_ | `String` |
142| _throws_ | `TypeError` if a valid UUID string cannot be generated |
143
144<!-- prettier-ignore -->
145> [!NOTE]
146> Ordering of values in the byte arrays used by `parse()` and `stringify()` follows the left &Rarr; right order of hex-pairs in UUID strings. As shown in the example below.
147
148Example:
149
150```javascript
151import { stringify as uuidStringify } from 'uuid';
152
153const uuidBytes = [
154 0x6e, 0xc0, 0xbd, 0x7f, 0x11, 0xc0, 0x43, 0xda, 0x97, 0x5e, 0x2a, 0x8a, 0xd9, 0xeb, 0xae, 0x0b,
155];
156
157uuidStringify(uuidBytes); // ⇨ '6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b'
158```
159
160### uuid.v1([options[, buffer[, offset]]])
161
162Create an RFC version 1 (timestamp) UUID
163
164| | |
165| --- | --- |
166| [`options`] | `Object` with one or more of the following properties: |
167| [`options.node` ] | RFC "node" field as an `Array[6]` of byte values (per 4.1.6) |
168| [`options.clockseq`] | RFC "clock sequence" as a `Number` between 0 - 0x3fff |
169| [`options.msecs`] | RFC "timestamp" field (`Number` of milliseconds, unix epoch) |
170| [`options.nsecs`] | RFC "timestamp" field (`Number` of nanoseconds to add to `msecs`, should be 0-10,000) |
171| [`options.random`] | `Array` of 16 random bytes (0-255) |
172| [`options.rng`] | Alternative to `options.random`, a `Function` that returns an `Array` of 16 random bytes (0-255) |
173| [`buffer`] | `Array \| Buffer` If specified, uuid will be written here in byte-form, starting at `offset` |
174| [`offset` = 0] | `Number` Index to start writing UUID bytes in `buffer` |
175| _returns_ | UUID `String` if no `buffer` is specified, otherwise returns `buffer` |
176| _throws_ | `Error` if more than 10M UUIDs/sec are requested |
177
178<!-- prettier-ignore -->
179> [!NOTE]
180> The default [node id](https://datatracker.ietf.org/doc/html/rfc9562#section-5.1) (the last 12 digits in the UUID) is generated once, randomly, on process startup, and then remains unchanged for the duration of the process.
181
182<!-- prettier-ignore -->
183> [!NOTE]
184> `options.random` and `options.rng` are only meaningful on the very first call to `v1()`, where they may be passed to initialize the internal `node` and `clockseq` fields.
185
186Example:
187
188```javascript
189import { v1 as uuidv1 } from 'uuid';
190
191uuidv1(); // ⇨ '2c5ea4c0-4067-11e9-8bad-9b1deb4d3b7d'
192```
193
194Example using `options`:
195
196```javascript
197import { v1 as uuidv1 } from 'uuid';
198
199const options = {
200 node: [0x01, 0x23, 0x45, 0x67, 0x89, 0xab],
201 clockseq: 0x1234,
202 msecs: new Date('2011-11-01').getTime(),
203 nsecs: 5678,
204};
205uuidv1(options); // ⇨ '710b962e-041c-11e1-9234-0123456789ab'
206```
207
208### uuid.v1ToV6(uuid)
209
210Convert a UUID from version 1 to version 6
211
212```javascript
213import { v1ToV6 } from 'uuid';
214
215v1ToV6('92f62d9e-22c4-11ef-97e9-325096b39f47'); // ⇨ '1ef22c49-2f62-6d9e-97e9-325096b39f47'
216```
217
218### uuid.v3(name, namespace[, buffer[, offset]])
219
220Create an RFC version 3 (namespace w/ MD5) UUID
221
222API is identical to `v5()`, but uses "v3" instead.
223
224<!-- prettier-ignore -->
225> [!IMPORTANT]
226> Per the RFC, "_If backward compatibility is not an issue, SHA-1 [Version 5] is preferred_."
227
228### uuid.v4([options[, buffer[, offset]]])
229
230Create an RFC version 4 (random) UUID
231
232| | |
233| --- | --- |
234| [`options`] | `Object` with one or more of the following properties: |
235| [`options.random`] | `Array` of 16 random bytes (0-255) |
236| [`options.rng`] | Alternative to `options.random`, a `Function` that returns an `Array` of 16 random bytes (0-255) |
237| [`buffer`] | `Array \| Buffer` If specified, uuid will be written here in byte-form, starting at `offset` |
238| [`offset` = 0] | `Number` Index to start writing UUID bytes in `buffer` |
239| _returns_ | UUID `String` if no `buffer` is specified, otherwise returns `buffer` |
240
241Example:
242
243```javascript
244import { v4 as uuidv4 } from 'uuid';
245
246uuidv4(); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
247```
248
249Example using predefined `random` values:
250
251```javascript
252import { v4 as uuidv4 } from 'uuid';
253
254const v4options = {
255 random: [
256 0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea, 0x71, 0xb4, 0xef, 0xe1, 0x67, 0x1c, 0x58, 0x36,
257 ],
258};
259uuidv4(v4options); // ⇨ '109156be-c4fb-41ea-b1b4-efe1671c5836'
260```
261
262### uuid.v5(name, namespace[, buffer[, offset]])
263
264Create an RFC version 5 (namespace w/ SHA-1) UUID
265
266| | |
267| --- | --- |
268| `name` | `String \| Array` |
269| `namespace` | `String \| Array[16]` Namespace UUID |
270| [`buffer`] | `Array \| Buffer` If specified, uuid will be written here in byte-form, starting at `offset` |
271| [`offset` = 0] | `Number` Index to start writing UUID bytes in `buffer` |
272| _returns_ | UUID `String` if no `buffer` is specified, otherwise returns `buffer` |
273
274<!-- prettier-ignore -->
275> [!NOTE]
276> The RFC `DNS` and `URL` namespaces are available as `v5.DNS` and `v5.URL`.
277
278Example with custom namespace:
279
280```javascript
281import { v5 as uuidv5 } from 'uuid';
282
283// Define a custom namespace. Readers, create your own using something like
284// https://www.uuidgenerator.net/
285const MY_NAMESPACE = '1b671a64-40d5-491e-99b0-da01ff1f3341';
286
287uuidv5('Hello, World!', MY_NAMESPACE); // ⇨ '630eb68f-e0fa-5ecc-887a-7c7a62614681'
288```
289
290Example with RFC `URL` namespace:
291
292```javascript
293import { v5 as uuidv5 } from 'uuid';
294
295uuidv5('https://www.w3.org/', uuidv5.URL); // ⇨ 'c106a26a-21bb-5538-8bf2-57095d1976c1'
296```
297
298### uuid.v6([options[, buffer[, offset]]])
299
300Create an RFC version 6 (timestamp, reordered) UUID
301
302This method takes the same arguments as uuid.v1().
303
304```javascript
305import { v6 as uuidv6 } from 'uuid';
306
307uuidv6(); // ⇨ '1e940672-c5ea-64c0-8bad-9b1deb4d3b7d'
308```
309
310Example using `options`:
311
312```javascript
313import { v6 as uuidv6 } from 'uuid';
314
315const options = {
316 node: [0x01, 0x23, 0x45, 0x67, 0x89, 0xab],
317 clockseq: 0x1234,
318 msecs: new Date('2011-11-01').getTime(),
319 nsecs: 5678,
320};
321uuidv6(options); // ⇨ '1e1041c7-10b9-662e-9234-0123456789ab'
322```
323
324### uuid.v6ToV1(uuid)
325
326Convert a UUID from version 6 to version 1
327
328```javascript
329import { v6ToV1 } from 'uuid';
330
331v6ToV1('1ef22c49-2f62-6d9e-97e9-325096b39f47'); // ⇨ '92f62d9e-22c4-11ef-97e9-325096b39f47'
332```
333
334### uuid.v7([options[, buffer[, offset]]])
335
336Create an RFC version 7 (random) UUID
337
338| | |
339| --- | --- |
340| [`options`] | `Object` with one or more of the following properties: |
341| [`options.msecs`] | RFC "timestamp" field (`Number` of milliseconds, unix epoch) |
342| [`options.random`] | `Array` of 16 random bytes (0-255) |
343| [`options.rng`] | Alternative to `options.random`, a `Function` that returns an `Array` of 16 random bytes (0-255) |
344| [`options.seq`] | 31 bit monotonic sequence counter as `Number` between 0 - 0x7fffffff |
345| [`buffer`] | `Array \| Buffer` If specified, uuid will be written here in byte-form, starting at `offset` |
346| [`offset` = 0] | `Number` Index to start writing UUID bytes in `buffer` |
347| _returns_ | UUID `String` if no `buffer` is specified, otherwise returns `buffer` |
348
349Example:
350
351```javascript
352import { v7 as uuidv7 } from 'uuid';
353
354uuidv7(); // ⇨ '01695553-c90c-722d-9b5d-b38dfbbd4bed'
355```
356
357### ~~uuid.v8()~~
358
359**_"Intentionally left blank"_**
360
361<!-- prettier-ignore -->
362> [!NOTE]
363> Version 8 (experimental) UUIDs are "[for experimental or vendor-specific use cases](https://www.rfc-editor.org/rfc/rfc9562.html#name-uuid-version-8)". The RFC does not define a creation algorithm for them, which is why this package does not offer a `v8()` method. The `validate()` and `version()` methods do work with such UUIDs, however.
364
365### uuid.validate(str)
366
367Test a string to see if it is a valid UUID
368
369| | |
370| --------- | --------------------------------------------------- |
371| `str` | `String` to validate |
372| _returns_ | `true` if string is a valid UUID, `false` otherwise |
373
374Example:
375
376```javascript
377import { validate as uuidValidate } from 'uuid';
378
379uuidValidate('not a UUID'); // ⇨ false
380uuidValidate('6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b'); // ⇨ true
381```
382
383Using `validate` and `version` together it is possible to do per-version validation, e.g. validate for only v4 UUIds.
384
385```javascript
386import { version as uuidVersion } from 'uuid';
387import { validate as uuidValidate } from 'uuid';
388
389function uuidValidateV4(uuid) {
390 return uuidValidate(uuid) && uuidVersion(uuid) === 4;
391}
392
393const v1Uuid = 'd9428888-122b-11e1-b85c-61cd3cbb3210';
394const v4Uuid = '109156be-c4fb-41ea-b1b4-efe1671c5836';
395
396uuidValidateV4(v4Uuid); // ⇨ true
397uuidValidateV4(v1Uuid); // ⇨ false
398```
399
400### uuid.version(str)
401
402Detect RFC version of a UUID
403
404| | |
405| --------- | ---------------------------------------- |
406| `str` | A valid UUID `String` |
407| _returns_ | `Number` The RFC version of the UUID |
408| _throws_ | `TypeError` if `str` is not a valid UUID |
409
410Example:
411
412```javascript
413import { version as uuidVersion } from 'uuid';
414
415uuidVersion('45637ec4-c85f-11ea-87d0-0242ac130003'); // ⇨ 1
416uuidVersion('6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b'); // ⇨ 4
417```
418
419<!-- prettier-ignore -->
420> [!NOTE]
421> This method returns `0` for the `NIL` UUID, and `15` for the `MAX` UUID.
422
423## Command Line
424
425UUIDs can be generated from the command line using `uuid`.
426
427```shell
428$ npx uuid
429ddeb27fb-d9a0-4624-be4d-4615062daed4
430```
431
432The default is to generate version 4 UUIDS, however the other versions are supported. Type `uuid --help` for details:
433
434```shell
435$ npx uuid --help
436
437Usage:
438 uuid
439 uuid v1
440 uuid v3 <name> <namespace uuid>
441 uuid v4
442 uuid v5 <name> <namespace uuid>
443 uuid v7
444 uuid --help
445
446Note: <namespace uuid> may be "URL" or "DNS" to use the corresponding UUIDs
447defined by RFC9562
448```
449
450## ECMAScript Modules
451
452This library comes with [ECMAScript Modules](https://www.ecma-international.org/ecma-262/6.0/#sec-modules) (ESM) support for Node.js versions that support it ([example](./examples/node-esmodules/)) as well as bundlers like [rollup.js](https://rollupjs.org/guide/en/#tree-shaking) ([example](./examples/browser-rollup/)) and [webpack](https://webpack.js.org/guides/tree-shaking/) ([example](./examples/browser-webpack/)) (targeting both, Node.js and browser environments).
453
454```javascript
455import { v4 as uuidv4 } from 'uuid';
456uuidv4(); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
457```
458
459To run the examples you must first create a dist build of this library in the module root:
460
461```shell
462npm run build
463```
464
465## CDN Builds
466
467### ECMAScript Modules
468
469To load this module directly into modern browsers that [support loading ECMAScript Modules](https://caniuse.com/#feat=es6-module) you can make use of [jspm](https://jspm.org/):
470
471```html
472<script type="module">
473 import { v4 as uuidv4 } from 'https://jspm.dev/uuid';
474 console.log(uuidv4()); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
475</script>
476```
477
478### UMD
479
480As of `uuid@9` [UMD (Universal Module Definition)](https://github.com/umdjs/umd) builds are no longer shipped with this library.
481
482If you need a UMD build of this library, use a bundler like Webpack or Rollup. Alternatively, refer to the documentation of [`uuid@8.3.2`](https://github.com/uuidjs/uuid/blob/v8.3.2/README.md#umd) which was the last version that shipped UMD builds.
483
484## Known issues
485
486### Duplicate UUIDs (Googlebot)
487
488This module may generate duplicate UUIDs when run in clients with _deterministic_ random number generators, such as [Googlebot crawlers](https://developers.google.com/search/docs/advanced/crawling/overview-google-crawlers). This can cause problems for apps that expect client-generated UUIDs to always be unique. Developers should be prepared for this and have a strategy for dealing with possible collisions, such as:
489
490- Check for duplicate UUIDs, fail gracefully
491- Disable write operations for Googlebot clients
492
493### "getRandomValues() not supported"
494
495This error occurs in environments where the standard [`crypto.getRandomValues()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues) API is not supported. This issue can be resolved by adding an appropriate polyfill:
496
497### React Native / Expo
498
4991. Install [`react-native-get-random-values`](https://github.com/LinusU/react-native-get-random-values#readme)
5001. Import it _before_ `uuid`. Since `uuid` might also appear as a transitive dependency of some other imports it's safest to just import `react-native-get-random-values` as the very first thing in your entry point:
501
502```javascript
503import 'react-native-get-random-values';
504import { v4 as uuidv4 } from 'uuid';
505```
506
507<!-- prettier-ignore -->
508> [!NOTE]
509> If you are using Expo, you must be using at least `react-native-get-random-values@1.5.0` and `expo@39.0.0`.
510
511### Web Workers / Service Workers (Edge <= 18)
512
513[In Edge <= 18, Web Crypto is not supported in Web Workers or Service Workers](https://caniuse.com/#feat=cryptography) and we are not aware of a polyfill (let us know if you find one, please).
514
515### IE 11 (Internet Explorer)
516
517Support for IE11 and other legacy browsers has been dropped as of `uuid@9`. If you need to support legacy browsers, you can always transpile the uuid module source yourself (e.g. using [Babel](https://babeljs.io/)).
518
519## Upgrading From `uuid@7`
520
521### Only Named Exports Supported When Using with Node.js ESM
522
523`uuid@7` did not come with native ECMAScript Module (ESM) support for Node.js. Importing it in Node.js ESM consequently imported the CommonJS source with a default export. This library now comes with true Node.js ESM support and only provides named exports.
524
525Instead of doing:
526
527```javascript
528import uuid from 'uuid';
529uuid.v4();
530```
531
532you will now have to use the named exports:
533
534```javascript
535import { v4 as uuidv4 } from 'uuid';
536uuidv4();
537```
538
539### Deep Requires No Longer Supported
540
541Deep requires like `require('uuid/v4')` [which have been deprecated in `uuid@7`](#deep-requires-now-deprecated) are no longer supported.
542
543## Upgrading From `uuid@3`
544
545"_Wait... what happened to `uuid@4` thru `uuid@6`?!?_"
546
547In order to avoid confusion with RFC [version 4](#uuidv4options-buffer-offset) and [version 5](#uuidv5name-namespace-buffer-offset) UUIDs, and a possible [version 6](http://gh.peabody.io/uuidv6/), releases 4 thru 6 of this module have been skipped.
548
549### Deep Requires Now Deprecated
550
551`uuid@3` encouraged the use of deep requires to minimize the bundle size of browser builds:
552
553```javascript
554const uuidv4 = require('uuid/v4'); // <== NOW DEPRECATED!
555uuidv4();
556```
557
558As of `uuid@7` this library now provides ECMAScript modules builds, which allow packagers like Webpack and Rollup to do "tree-shaking" to remove dead code. Instead, use the `import` syntax:
559
560```javascript
561import { v4 as uuidv4 } from 'uuid';
562uuidv4();
563```
564
565... or for CommonJS:
566
567```javascript
568const { v4: uuidv4 } = require('uuid');
569uuidv4();
570```
571
572### Default Export Removed
573
574`uuid@3` was exporting the Version 4 UUID method as a default export:
575
576```javascript
577const uuid = require('uuid'); // <== REMOVED!
578```
579
580This usage pattern was already discouraged in `uuid@3` and has been removed in `uuid@7`.
581
582---
583
584Markdown generated from [README_js.md](README_js.md) by <a href="https://github.com/broofa/runmd"><image height="12px" src="https://camo.githubusercontent.com/5c7c603cd1e6a43370b0a5063d457e0dabb74cf317adc7baba183acb686ee8d0/687474703a2f2f692e696d6775722e636f6d2f634a4b6f3662552e706e67" /></a>