@fdv/unid
v3.0.0
Published
Unique, Safe, Integer ID generator
Downloads
6
Maintainers
Readme
Unid
[Yet another] Unique, Safe, Integer ID Generator for Node.js
Usage
const unid = require('@fdv/unid');
const nextId = unid({ /* epoch: SOME_DATE, worker: SOME_ID */ });
nextId().then(id => console.log(id));
// or:
(async function () {
const id = await nextId();
// ...
})();
License
WTFPLv2