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

object-tagger

v0.4.1

Published

Takes a POJO and tags specified keys with unique numbers.

Downloads

28

Readme

Object Tagger

Object tagger is a library that tags objects with a unique indexable number within a record. This is useful when you have a record containing objects, and these objects needs to be stored somewhere and later retrieved. Some data stores cannot index POJOs (Plain Old JavaScript Object). This library solves this by taking a record (also a POJO) and tags it mutably with keys that are uniquely related to the objects that the record originally contains. You can later also untag the objects allowing the unique ids to be reusable, or strip the tags from the objects without "untagging" the unique ids, so they are still considered to be in-use.

Currently it has an immutable object tagger that uses structure sharing. But it would be easy to create a mutable object tagger in the future (a mutable one would be more performant).

Basic Usage

npm install --save 'object-tagger';
import { TaggerImmutable } from 'object-tagger';
const tagSchema = new Set(['key1', 'key2', 'key3', 'key4']);
const tagSuffix = 'tag'; // make sure there are no conflicts with this tag suffix!

let tagger = new TaggerImmutable(tagSchema, tagSuffix);
const obj = {};
const object = {
  key1: {},
  key3: obj,
  key4: obj,
  key2: {},
  keyRandom: {}
};
tagger = tagger.tag(object);
console.log(object);
/*
{ key1: {},
  key3: {},
  key4: {},
  key2: {},
  keyRandom: {},
  key1tag: 0,
  key2tag: 1,
  key3tag: 2,
  key4tag: 2 }
*/

// if you tag another record that uses the same `obj`
// it will be given the same tag
// but new objects (even with the same key will be given different unique tags)
const object2 = {
  key1: {},
  key3: obj,
  key4: obj,
  key2: {},
};
tagger = tagger.tag(object2);
console.log(object2);
/*
{ key1: {},
  key3: {},
  key4: {},
  key2: {},
  keyRandom: {},
  key1tag: 3,
  key2tag: 4,
  key3tag: 2,
  key4tag: 2 }
*/

// you can now strip the object without forgetting about the tags
const object_ = {...object};
tagger.strip(object);
console.log(object);
/*
{ key1: {}, key3: {}, key4: {}, key2: {}, keyRandom: {} }
*/

// you can now untag it freeing the unique ids to be reused
tagger = tagger.untag(object_);
console.log(object_);
/*
{ key1: {}, key3: {}, key4: {}, key2: {}, keyRandom: {} }
*/

// the immutable tagger has transaction context that allows you to batch up changes
tagger = tagger.transaction((tt) => {
  tt.untag(object2);
  // tt has `tag`, `untag` and `strip`
});

Note that tags are also counted (reference counted). If you tag the same record of objects twice, those tags have a count that is incremented. Such that if you untag once, those tags are still remembered. But if you untag twice, then the tags are truly deallocated and can be reused.

This is all implemented with Facebook's immutable Map, and Matrix AI's immutable resource-counter.

Note that only objects can be tagged. This is what this library is designed for. It will not tag non-objects.

Development

To build this package for release:

npm run build

It will run tests, generate documentation and output multiple targets. One for browsers and one for nodejs. See rollup.config.js to see the target specification.

If your bundler is aware of the module field in package.json, you'll get the ES6 module directly.

Once you've updated the package run this:

npm version <update_type>
npm publish