package.runkit.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of short-unique-id Show documentation
Show all versions of short-unique-id Show documentation
Generate random or sequential UUID of any length
The newest version!
const ShortUniqueId = require('short-unique-id');
const uid = new ShortUniqueId();
console.log(uid.rnd(6));
console.log(uid.seq());
const uidWithTimestamp = uid.stamp(32);
console.log(uidWithTimestamp);
console.log(uid.parseStamp(uidWithTimestamp));
console.log(uid.version);