If you need unique identifiers in your Node.js app for use in a database such as Apache CouchDB or Cloudant, then kuuid can generate them. The ids it generates are:
- uniform - all ids are 32 characters long (or 36 for
v7ids) - unique - no two ids will be the same, or at least the likelihood of a clash is vanishingly small.
- time-sortable - the ids sort into time order (or reverse time order), with one second (or millisecond) precision.
If a kuuid-generated id were used as a database's unique identifier, it would sort roughly in time order (kuuid.v7()).
Add kuuid to your Node.js project with:
npm install --save kuuidImport the library into your code with:
import * as kuuid from 'kuuid'UUID v7 is the standards-compliant way of generating time-sortable unique ids. This is the preferred way of generating such ids and should be used instead of the 'kuuid.id()' function.
let id = kuuid.v7()
// '019a0c05-7c7f-7c1b-b908-ea4425364ec4'This is the standard format of a UUIDv7 string. If you want a shorter variant without the '-' characters, there's kuuid.v7s():
let id = kuuid.v7s()
// '019a0c0691b3732c89757a878857ea69'Both variants accept either an integer representing the number of millseconds since 1970 or an ISO-8601 string representing the date/time to use. If omitted, the current time is used:
// set the time using a timestamp
const timestamp = new Date().getTime()
kuuid.v7(timestamp)
// set the time using a string
const ISOString = new Date().toISOString()
kuuid.v7(ISOString)
// use the current time
kuuid.v7()Simply call the kuuid.id() function to get an id:
let id = kuuid.id()
// 001fgS7k4gJxqY1aXpni3gHuOy0WusLeYou can use such an id as a unique identifier in your database records:
let doc = {
_id: kuuid.id(),
name: 'Glynn',
location: 'UK',
verified: true
}
// {"_id":"001fgS954GN35e4NJPyK1W9aiE44m2xD","name":"Glynn","location":"UK","verified":true}
db.insert(doc)By default, the id() function returns an id made up of a timestamp derived from "now" to second precision, 128 bits of data and it will sort in oldest-first order. This can be configured by overriding these defaults:
const id = kuuid.id({
timestamp: '2000-01-01T10:24:22.000Z', // use a known timestamp
random: 1, // use less random data
reverse: true, // sort in newest first order
millisecond: true // the timestamp should be to millisecond precision
})timestamp- an ISO string representing the date/time required or an integer representing the number of milliseconds since 1970. Default "now"random- the quantity of random data. Between 1 and 4. Default4.reverse- if true, the id will sort in newest-first order. Defaultfalse.millisecond- if true, the id's time component will be stored with milliecond precision. Defaultfalse.
For backwards compatibility, the id() function will also accept a string or number parameter representing the timestamp.
// 'now'
kuuid.id()
// ISO String
kuuid.id('2018-07-20T10:10:34.234Z')
// millseconds since 1970
kuuid.id(1514764800000)idr()- returns an id that sorts in newest-first order.idms()- returns an id with millisecond precision.ids()- returns a shorter id (64-bits of random data).idsr()- returns a short it in newest-first order.prefix()- returns only the time prefix.prefixReverse()- returns only the time prefix (reverse order).prefixms()- returns only the time prefix with ms precision.prefixReverseMs()- returns only the time prefix with ms precision. (reverse order).rand()- returns the random portion of the id.
A kuuid.id() string has two parts:
- 8 characters representing the number of seconds since 1st January 1970.
- 24 characters containing random data (for the default 128-bits)
The front eight characters allow the string to be sorted by time. Two ids created in the same second will have the same front eight characters. The remaining 24 characters contain 128 bits of random data.
The strings are encoded in "base 62" (i.e using digits and uppercase/lowercase letters) to pack more information into a smaller space.
- The
kuuidlibrary can only be used to store dates after the epoch on1970-01-01. - The random number is genreated using Node.js's crypto.randomBytes which is a secure, if slow, source of random information.
- The character set used by the base-62 encoding algorithm differs from other algorithms I've seen to ensure that it sorts correctly in a CouchDB
_idfield.