
UUIDX.

A lightweight package to generate UUIDs on the go.
Made with ❤️ in Palestine 🇵🇸
Generating UUID is never easier.
Installation
npm i @nasriya/uuidx
Importing
Import in ES6 modules
import uuidx from '@nasriya/uuidx';
Import in CommonJS (CJS)
const uuidx = require('@nasriya/uuidx').default;
Usage
To generate a UUIDs, call the method of the needed version whenever you need it:
const idv4 = uuidX.v4();
const idv5 = uuidX.v5('nasriya.net', uuidX.v4());
console.log(idv4);
console.log(idv5);
Thank you!
License
Please read the license from here.