![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
npm install uuidv5
var uuidv5 = require('uuidv5');
If you are unfamiliar with v5 UUIDs, read this. For a deeper look, read RFC 4122.
namespace
can be 'url', 'dns', 'oid', 'x500', or 'null'. If it's none of those, it must be a UUID to use as a namespace, either in string or Buffer form.name
can be a string or Buffer. What it should contain is namespace-dependent.raw_output
is an optional flag. If set to true
, the UUID will be returned as a Buffer instead of as a string.Takes a Buffer-form uuid and returns it as a string.
Takes a UUID as a string (with or without dashes [-]) and returns it as a Buffer.
var uuidv5 = require('uuidv5');
// Generate a UUID in the default URL namespace
var urlUUID = uuidv5('url', 'http://google.com/page');
// Default DNS namespace
var dnsUUID = uuidv5('dns', 'google.com');
// Create your own namespace
var privns = uuidv5('null', 'my-private-namespace', true); // Buffer form is more efficient
var privUUID = uuidv5(privns, 'some-named-thing');
FAQs
Generates named version 5 UUIDs
The npm package uuidv5 receives a total of 976 weekly downloads. As such, uuidv5 popularity was classified as not popular.
We found that uuidv5 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.