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-transform-stream

v0.2.2

Published

A collection a streams for working with objects and transforming them.

Downloads

2

Readme

object-stream

A Collection of node streams for working with objects.

Description

If you have a need to transform individual objects through a stream. This module is for you. It simplifies removing keys/values, and transforming the object to meet any schema. Most of the function will support and object of any tree depth, as well as object with subobject that have arrays that have subobjects. This style of tranformation is normally very difficult with objects. This module hopes to simplify that by using a string path notation.

By building a traversal tree of the object hierarchy, we can use the paths to apply functions.

Important use cases. Adapting new versions of schema to older versions of a schema. Such as:


Mapping the new schema to the old, and vice versa.

old = {
  menu: {
      details: 'blah',
    },
  sections: {
    {},
    {},
    {}
  } 
}

new = {
  menu: {
      details: 'blah',
      keywords: 'blah',
      sections: [
          {},
          {},
          {}
        ] 
  } 
}

The above example from new TO old ( new ==> old )

Would imply we need to remove the key value pair for Keywords, and move the 'sections' up one level.

Using the API in this module, we could either use the inclusive 'Filter' stream or exclusive 'Exclude' stream to remove 'keywords'.

We could then use the 'Mutate' stream to move sections up one level.

Filter

var ObjectStream = require("object-transform-stream");

/*
This Config means, we want to keep x , x.y, x.y's children, y, y.b, y.b's children

A * denotes either any value, or any array. Its most important use is in iterating arrays, to remove subchildren.
and to include all children of an object in the operation.

In the following example, refer to 'data' as the original object going in, and buffer as the object coming out.

Use TAP we test whether or not the objects are the same.
*/
var config = ['x','x:y','x:y:*', 'y', 'y:b', 'y:b:*'];
var stream = ObjectStream.Transform.Filter(config);


         var data = 
             {
                 x:{
                     y:[1,2,3],
                     z:3
                 },
                 y:{
                     a:1,
                     b:{
                         c:1,
                         d:3
                     }
                 }
             }
         var buffer = undefined;
                  stream.on('data', function ( data ) {
             buffer = data;
         });
         stream.on('end', function() {
             t.same(
                 {x:{
                     y:[1,2,3]
                     },
                  y:{
                      b: {
                          c:1,
                          d:3
                      }
                  }
                 }, buffer);
         });
         stream.write(data);
         stream.end();