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

@tryon-technology/global-id

v1.1.5

Published

## Overview

Downloads

356

Readme

@tryon-technology/global-id

Overview

The @tryon-technology/global-id package is a powerful tool for encoding and decoding versionable global identifiers in TypeScript applications. It enables the use of objects as identifiers and supports flexible migration from legacy ID formats to newer ones. The library uses efficient encoding techniques, including compression, to minimize the length of the encoded IDs.

This package is open source, licensed under the MIT License. Contributions are welcomed and appreciated.

Installation

npm install @tryon-technology/global-id

Usage

Basic Setup

Import the necessary classes from the package:

import {
  TypeRegistry,
  ParserRegistry,
  Encoder,
  Decoder,
  GlobalId,
  IParser,
} from '@tryon-technology/global-id';

Defining Parsers

Implement parsers for different ID types. For example, a legacy identifier parser for an organization:

class OrganizationLegacyIdentifierParser implements IParser {
  parse(value: string): string {
    return value;
  }
}

Register Types and Parsers

Initialize and configure TypeRegistry and ParserRegistry:

const typeRegistry = new TypeRegistry();
const parserRegistry = new ParserRegistry(typeRegistry);

// Register a type with its corresponding prefix
typeRegistry.registerType('Organization', 'org');

// Register a parser for a specific type and version
parserRegistry.registerParser(
  'org',
  'legacy',
  new OrganizationLegacyIdentifierParser()
);

Encoding and Decoding

Create encoder and decoder instances:

const encoder = new Encoder(typeRegistry);
const decoder = new Decoder(parserRegistry, typeRegistry);

Define functions to encode and decode global IDs:

const encode = (id: GlobalId<unknown>): string => {
  return encoder.encode(id);
};

const decode = (id: string): GlobalId<never> => {
  return decoder.decode(id);
};

Export these functions for use in other parts of your application:

export { encode, decode, GlobalId };

Example Usage

Demonstrating encoding and decoding of a global ID:

import { GlobalId, encode, decode } from './id';

describe('id', () => {
  it('should encode and decode global id', () => {
    const legacyId = '____RANDOM____';
    const globalId = new GlobalId('Organization', 'legacy', legacyId);
    const globalIdString = encode(globalId);

    console.log(`Local ID: ${legacyId}, length: ${legacyId.length}`);
    console.log(
      `Global Id: ${globalIdString}, length: ${globalIdString.length}`
    );

    const decodedGlobalId: GlobalId<string> = decode(globalIdString);

    expect(decodedGlobalId).toEqual(globalId);
    expect(decodedGlobalId.getValue()).toEqual(legacyId);
  });
});

Contributing

Contributions to this package are welcome! Please follow standard open-source contribution guidelines, including forking the repository, creating a branch for your contribution, and submitting a pull request for review.

License

This project is licensed under the MIT License - see the LICENSE file for details.