@axel669/asuid

0.2.1 • Public • Published

Almost Sortable Unique IDs

Similar idea to the ksuid, but uses a larger timestamp for millisecond resolution. Copy-paste friendly, 35 chars long, and lexicographical sorting of the ids will sort them by time, but if multiple asuids are generated in the same millisecond (or using the same timestamp) then the random bytes will prevent ordering them in perfect generated order (hence, almost sortable).

<script type="module"> import asuid from "https://esm.sh/@axel669/asuid" const demoArea = document.querySelector(".demo-area") demoArea.innerHTML = ` Generate
Generate an ASUID
` const resultArea = demoArea.querySelector("div") demoArea.querySelector("button").addEventListener( "click", () => resultArea.innerText = asuid() ) </script>

Format

| 56 bit timestamp | 120 bit id |

The 56 bit timestamp allows for values in the range [-8640000000000000, 8640000000000000] with millisecond precision. This means any valid JS date can become a valid asuid, including dates in the past (for assigning ids to older records).

Installation

npm add @labyrinthos/asuid

Usage

Imports

Beacuse this library uses the js cryptography api, there is a different import for node vs non-node envs.

// browser/cloudflare workers
import asuid from "@labyrinthos/asuid"
// node
import asuid from "@labyrinthos/asuid/node"

Generate

//  generate fully random asuid
asuid()

//  generate random id for a timestamp (or date)
asuid(timeStamp)
asuid(new Date(timeStamp))
asuid(BigInt(timeStamp))

//  generate asuid for current time with set id bytes
asuid(null, uint8Array)
asuid(null, idString)

//  regenerate id from parts
asuid(timeStamp, uint8Array)
asuid(timeStamp, idString)

Parse

import asuid from "@labyrinthos/asuid"

const parsed = asuid.parse(id)
{
    // timestamp for the asuid
    time
    // date object from the timestamp
    date
    // the id string (last 15 bytes/24 characters)
    id
    // the asuid that was parsed
    source
}

Readme

Keywords

none

Package Sidebar

Install

npm i @axel669/asuid

Weekly Downloads

4

Version

0.2.1

License

MIT

Unpacked Size

12.4 kB

Total Files

7

Last publish

Collaborators

  • axel669