Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kuuid

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kuuid

K-sortable UUID - roughly time-sortable unique id generator

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.7K
increased by37.36%
Maintainers
1
Weekly downloads
 
Created
Source

kuuid

Build Status npm version

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.
  • 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, with one second precision.

If a kuuid-generated id were used as a database's unique identifier, it would sort roughly in time order (kuuid.id()), or reverse time order (kuuid.idr())

Installation

Add kuuid to your Node.js project with:

npm install --save kuuid

Import the library into your code with:

let kuuid = require('kuuid')

Generating an id

Simply call the kuuid.id() function to get an id:

let id = kuuid.id()
// 001fgS7k4gJxqY1aXpni3gHuOy0WusLe

You 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)

Supplying no parameter to kuuid.id() uses the current time to generate the timestamp part of the id. You may also supply your own date/time:

// 'now'
kuuid.id()

// ISO String 
kuuid.id('2018-07-20T10:10:34.234Z')

// millseconds since 1970
kuuid.id(1514764800000)

Reverse mode

If you want your data to sort into "newest first" order, then kuuid.idr() returns an id that sorts in the opposite order:

// 'now'
kuuid.idr()
// zzyIy6DZ2SKTqh2WpV6D0DTbkK0kbn5u

// Epoch
kuuid.idr('1970-01-01T00:00:00Z')
// zzzzzzzz2v3VKT4Sl9yV2f6v673SDt5v

Millisecond mode

If you want your ids to have millsecond prevision then use idms():

// 'now'
kuuid.idms()
// 0RW2yGC21miE8r3oeOun2pGeIp0EoQNu

Generating a prefix

If you only need the time-based prefix, you can call kuuid.prefix():

// 'now'
kuuid.prefix()

// ISO String 
kuuid.prefix('2018-07-20T10:10:34.234Z')

// millseconds since 1970
kuuid.prefix(1514764800000)

or for a reverse-mode prefix:

kuuid.prefixReverse()

or for a millisecond-precision version:

kuuid.prefixms()

How does it work?

A kuuid.id() string has two parts:

  • 8 characters representing the number of seconds since 1st January 1970.
  • 24 characters containing random data.

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.

Points to note

  1. The kuuid library can only be used to store dates after the epoch on 1970-01-01.
  2. The random number is genreated using Node.js's crypto.randomBytes which is a secure, if slow, source of random information.
  3. 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 _id field.

Further reading

Keywords

FAQs

Package last updated on 12 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc