npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aguid

v2.0.0

Published

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

Downloads

21,603

Readme

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("[email protected]"); // 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

  • Wikipedia UUID (gentler intro): http://en.wikipedia.org/wiki/Universally_unique_identifier
  • Universally Unique IDentifier (UUID) Specification: http://tools.ietf.org/html/rfc4122
  • V.4 Random UUID: http://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_.28random.29

Implementation

  • Hex to Base64 and back: http://stackoverflow.com/questions/23190056/hex-to-base64-converter-for-javascript
  • Snowflake approach: http://blog.tompawlak.org/generate-unique-identifier-nodejs-javascript
  • GUIDs using Math.random() https://gist.github.com/jed/982883

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