Get started with uuid CDN

MIT licensed

JS UUID library creates unique identifiers .

Tags:
  • uuid
  • guid
  • rfc4122

Stable version

Copied!

How to start using uuid CDN


// Include the UUID library from the CDN
const { v4: uuidv4 } = require('uuid');

// Generate a new UUID
const newUuid = uuidv4();

// Log the UUID to the console
console.log(newUuid);

All versions