zeptoid
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

ZeptoID

A tiny isomorphic fast function for generating a cryptographically random hex string.

Accoding to this calculator one would have to generate ids at a rate of 1 billion per second for ~83 years to have a 1% probability of finding a collision.

Comparison

Compared to nanoid there are the following differences:

  • zeptoid is 50% faster.
  • zeptoid has a ~5x bigger space of possible unique strings that could be generated.
  • zeptoid is not customizable in any way, it will always simply output a 32-characters hex string.
  • zeptoid uses only the 16-characters of the hexadecimal alphabet, which makes the ids more human-friendly.

Install

npm install --save zeptoid

Usage

import zeptoid, {is} from 'zeptoid';

// Generate ids

zeptoid (); // => 'aceee829076f33f6626a93ad1fcca776'
zeptoid (); // => '39a07eda327e5b52f903d06303ca97be'
zeptoid (); // => '0c1a4d3f273505565a380022fda07edd'

// Check if a string is a zeptoid or not

is ( zeptoid () ); // => true
is ( 'something' ); // => false

License

MIT © Fabio Spampinato

Package Sidebar

Install

npm i zeptoid

Weekly Downloads

125

Version

1.0.1

License

none

Unpacked Size

6.25 kB

Total Files

16

Last publish

Collaborators

  • fabiospampinato