You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mongodb-short-id

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-short-id

Convert MongoDB id to shorter strings and reverse

0.3.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

MongoDB short id

Create shorter string from MongoDB objectIDs and reverse

Api Examples

var shortID = require('mongodb-short-id');

shortID.longToShort('507f1f77bcf86cd799439011');
// => 'UH8fd7z4bNeZQ5AR'

shortID.shortToLong('UH8fd7z4bNeZQ5AR');
// => '507f1f77bcf86cd799439011'

shortID.shortToObjectID('UH8fd7z4bNeZQ5AR');
// => 507f1f77bcf86cd799439011
typeof shortID.shortToObjectID('UH8fd7z4bNeZQ5AR');
// => 'object'

var objectID = shortID.shortToObjectID('UH8fd7z4bNeZQ5AR');
shortID.objectIDToShort(objectID)
// => 'UH8fd7z4bNeZQ5AR'

Shortcuts

  • l2s => longToShort
  • s2l => shortToLong
  • o2s => objectIDtoShort
  • s2o => shortToObjectID

Build status

  • master: Build Status
  • develop: Build Status

Keywords

MongoDB

FAQs

Package last updated on 14 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts