A library to generate unique identifiers using methods like UUID and nanoid.
Go to file
2018-10-06 17:01:10 +02:00
test BREAKING CHANGE(scope): update scope 2018-10-06 15:38:55 +02:00
ts BREAKING CHANGE(scope): update scope 2018-10-06 15:38:55 +02:00
.gitignore initial 2017-07-14 17:18:27 +02:00
.gitlab-ci.yml BREAKING CHANGE(scope): update scope 2018-10-06 15:38:55 +02:00
npmextra.json BREAKING CHANGE(scope): update scope 2018-10-06 15:38:55 +02:00
package-lock.json 3.0.0 2018-10-06 15:38:55 +02:00
package.json 3.0.0 2018-10-06 15:38:55 +02:00
readme.md fix(core): update 2018-10-06 17:01:10 +02:00
tslint.json initial 2017-07-14 17:18:27 +02:00

@pushrocks/smartunique

make things unique

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

// We are using TypeScript syntax here to have types in place
import * as smartunique from 'smartunique';

// creates a short mathematically highly unique short string
let myShortid = smartunique.shortid();

// creates a string that is possibly unique world wide
let myUuid4 = smartunique.uuid4();

// creates a oneway repeatable unique id within a certain namespace
let myUuid5 = smartunique.uuid('myobscureduser@somedomain.com', smartunique.uuid4());

Learn more about UUIDs: knowledgebase.gitzone.com/uuid.html

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer