Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aguid

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aguid

A Standard-Compliant Globally Unique IDentifier (GUID) generator for Node.js and Browser

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

aguid

A Globally Unique IDentifier (GUID) generator in JS.

Node.js Version NPM Version Build Status codecov.io Code Climate Dependency Status

Why?

There are already great node module(s) for generating random UUIDs: https://www.npmjs.com/search?q=uuid

What we need is a way to return the same UUID/GUID for a given input string; i.e. Deterministic !

Use Case

The use-case is very specific: generate a key for a record in a database.

Imagine you want to store a person's personal details in a record but don't want use a username or email as the key for the record. We solved this by creating a UUID (string) from the username or email address and using that instead. (see usage below)

Usage

### Install

npm install aguid --save

Generate a Deterministic GUID given an input

var aguid = require('aguid');
var guid  = aguid("hello@world.io"); // d828ed52-32ed-4908-86df-df934d3c315d (ALWAYS)
// use the guid as the key for our record in Redis, ElasticSearch, Postgres, etc.

Note: even though the GUID we are returning for a given input is deterministic, it's still globally unique because we are using SHA256 hash for the characters. and in our specific use-case we are hashing an email address (which is its' self unique be definition!)

Generate a Random GUID when invoked without argument

var aguid = require('aguid');
var guid  = aguid(); // 525be54a-1101-46bf-97d7-2e9c89dd1b16 (*Random*)
// use for what ever you need a *random* guid

Research

Background

Implementation

Dependency

Instead of trying to re-invent this, I invested the time to read, download and play with the source-code for node-uuid (the most popular & performant module for creating GUIDs): https://github.com/broofa/node-uuid See: #3

Keywords

FAQs

Package last updated on 27 Jan 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc