shortid32

0.1.1 • Public • Published

shortid32 Build Status shortid32

Amazingly short non-sequential human-friendly unique id generator.

ShortId32 creates amazingly short non-sequential human-friendly unique ids. Perfect for url shorteners, and any other id users might see.

  • By default 7-14 human-friendly characters: A-Z, 0-9, excluding the commonly confused 01OI
  • Non-sequential so they are not predictable.
  • Supports cluster (automatically), custom seeds, custom alphabet.
  • Can generate any number of ids without duplicates, even millions per day.
  • Perfect for games, especially if you are concerned about cheating so you don't want an easily guessable id.
  • Apps can be restarted any number of times without any chance of repeating an id.
  • Works in Node, io.js, and web browsers.
  • Includes Mocha tests.

Usage

var shortid = require('shortid32');
 
console.log(shortid.generate());
//PPBQWA9

Browser Compatibility

The best way to use shortid32 in the browser is via browserify or webpack.

These tools will automatically only include the files necessary for browser compatibility.

All tests will run in the browser as well:

## build the bundle, then open Mocha in a browser to see the tests run. 
$ grunt build open

Example

~/projects/shortid ❯ node examples/examples.js
WKTQBXJF
QKCTWBXJF
WKZVQMXJP
Q3ATWB5CF
QK5VQMXCP
WKQVQMXJF
Q3FTQB5CP
WK6VWM5JF
QKGTWBXCF
W3TVWBXJP

API

var shortid = require('shortid32');


shortid.generate()

Returns string non-sequential unique id.

Example

users.insert({
    _id: shortid.generate()
    name: ...
    email: ...
    });

characters(string)

Default: '23456789ABCDEFGHJKLMNPQRSTUVWXYZ'

Returns new alphabet as a string

Optional

Change the characters used.

You must provide a string of all 32 unique characters. Order is not important.

The default characters provided were selected because they are human friendly.

Example

// any 32 unicode characters work, but I wouldn't recommend this.
shortid.characters('ⒶⒷⒸⒹⒺⒻⒼⒽⒿⓀⓁⓂⓃⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ②③④⑤⑥⑦⑧⑨');

isValid(id)

Returns boolean

Check to see if an id is a valid shortid. Note: This only means the id could have been generated by shortid, it doesn't guarantee it.

Example

shortid.isValid('43XTDBE');
// true
shortid.isValid('i have spaces');
// false

shortid.worker(integer)

Default: process.env.NODE_UNIQUE_ID || 0

Recommendation: You typically won't want to change this.

Optional

If you are running multiple server processes then you should make sure every one has a unique worker id. Should be an integer between 0 and 16. If you do not do this there is very little chance of two servers generating the same id, but it is theatrically possible if both are generated in the exact same second and are generating the same number of ids that second and a half-dozen random numbers are all exactly the same.

Example

shortId.seed(1000);

shortid.seed(float)

Default: 1

Recommendation: You typically won't want to change this.

Optional

Choose a unique value that will seed the random number generator so users won't be able to figure out the pattern of the unique ids. Call it just once in your application before using shortId and always use the same value in your application.

Most developers won't need to use this, it's mainly for testing ShortId.

If you are worried about users somehow decrypting the id then use it as a secret value for increased encryption.

Example

shortId.seed(1000);

About the Author

This is a modification of shortid. The original author of that software is Dylan Greene.

License

Copyright (c) 2015 Dylan Greene, contributors.

Released under the MIT license.

Screenshots are CC BY-SA (Attribution-ShareAlike).

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.1
    1,074
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.1
    1,074
  • 0.1.0
    0

Package Sidebar

Install

npm i shortid32

Weekly Downloads

1,074

Version

0.1.1

License

MIT

Last publish

Collaborators

  • cuvva-old
  • billinghamj