UUID.js - RFC-compliant UUID Generator for JavaScript

Synopsis
<script type="module">
import { UUID } from "https://unpkg.com/uuidjs@^5";
const uuid = UUID.generate();
</script>
import { UUID } from "uuidjs";
const uuid = UUID.generate();
import { UUID } from "uuidjs";
const str: string = UUID.generate();
const obj: UUID = UUID.genV4();
npx uuidjs
Description
UUID.js is a JavaScript/ECMAScript library to generate RFC 9562 compliant
Universally Unique IDentifiers (UUIDs). This library supports UUIDv4 (random
number-based UUIDs), UUIDv1 (Gregorian time-based UUIDs), and UUIDv6 (Reordered
Gregorian time-based UUIDs). It also provides an object-oriented interface to
print a generated or parsed UUID in a variety of forms.
Features
- Generates UUIDv4 (random number-based UUIDs), UUIDv1 (Gregorian time-based
UUIDs), and UUIDv6 (Reordered Gregorian time-based UUIDs)
- Provides an object-oriented interface to print various string representations
of a generated or parsed UUID
- Utilizes a cryptographically secure pseudo-random number generator if
available, whereas falling back to
Math.random()
otherwise - Appends extra random bits to compensate for the lower timestamp resolution of
JavaScript than that required for UUIDv1 and UUIDv6
- Comes with a lot of test cases including format checks and statistical tests
to maintain a high-quality code base
Usage Examples
Import UUID
class:
import { UUID } from "uuidjs";
UUID.generate()
returns a UUIDv4 as a hexadecimal string.
console.log(UUID.generate());
UUID.genV4()
, UUID.genV1()
, UUID.genV6()
, and UUID.parse()
return a UUID
object that has various fields and methods.
const objV4 = UUID.genV4();
const objV1 = UUID.genV1();
const objV6 = UUID.genV6();
const uuid = UUID.parse("a0e0f130-8c21-11df-92d9-95795a3bcd40");
console.log(uuid.toString());
console.log(uuid.hexString);
console.log(uuid.hexNoDelim);
console.log(uuid.bitString);
console.log(uuid.urn);
console.log(objV4.equals(objV1));
console.log(objV4.version);
console.log(objV1.version);
console.log(objV6.version);
License
Copyright (c) 2010-2024 LiosK
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
Author
LiosK contact@mail.liosk.net
See Also