burst-short-mongo-id

0.1.1 • Public • Published

Short Mongo Id

Generate short id's from MongoDB Object ID's for use in url's or other applications.

Id's are generated from the timestamp and counter of the MongoDB Id, with some slight variation. They should be reasonably unique.

This is, unfortunately, a one-way function. It will reliably produce the same short id for the same MongoDB Id, but the operation can't be reversed (it is missing information about the machine id, process id, and most of the counter).

Install

Use NPM:

$ npm install burst-short-mongo-id

or Git:

$ git clone git://git@github.com/treygriffith/short-mongo-id.git

Use

Pass a MongoDB ObjectId (or a string that can be converted to one) and it will return a reasonably unique short id made of [-_a-zA-Z0-9].

var shortId = require('short-mongo-id');
var id = shortId("507f191e810c19729de860ea"); // returns "iTxuMF"

License

MIT (see License)

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i burst-short-mongo-id

    Weekly Downloads

    9

    Version

    0.1.1

    License

    none

    Unpacked Size

    5.19 kB

    Total Files

    7

    Last publish

    Collaborators

    • transmitsms