Giter Site home page Giter Site logo

id62's Introduction

id62: Base-62 Random UUIDs for Node.js

npm CircleCI

A small, fast base-62 universally unique identifier (UUID) generator for Node.js written in Typescript.

Goals/Benefits

  • Alphanumeric base-62 (0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz)
    • Relatively compact (21 digits compared to 36 of hexadecimal OSF DCE UUID)
    • URL path and filename compatible (no slash like some base-64 alphabets)
    • Easy double-click selection for copy/paste (most apps only select alphanumeric characters)
  • Exact same number of random bits (122) as OSF DCE UUID v4
    • Same negligible collision probability ("the probability to find a duplicate within 103 trillion version-4 UUIDs is one in a billion")
    • Could be translated to a hexadecimal UUID v4 for interoperability if necessary
  • Fixed-length representation (leading zeroes not dropped)
  • Cryptographically secure randomization (from Node's crypto.randomBytes)
  • Avoid unnecessary steps, such as converting a UUID v4 string to base-62
  • No dependencies

Installation

npm install id62

Usage

import id62 from 'id62';

console.log(id62()); // 0KwQZuxQNLAxV7a7mFm16

License

id62 is available under the ISC license.

id62's People

Contributors

trevorr avatar

Stargazers

Spencer Brown avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.