Get started with uuid CDN
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);