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

grul

v0.9.2

Published

recursive utility library for chaining generic recursive functions as lambda utilities

Downloads

12

Readme

grul.js

A library for chaining generic recursive functions as lambda utilities.

npmjs

Node Start

install grul with NPM.

npm install grul

require grull to any conveniently named non conflicting reference. examples here are referenced via "grul".

const grul=require("grul");

CDN Start

<script type="text/javascript" src="grul.js"></script>

Traverse, mutate, flatten multidimensional data

var matrix = [ [ [5] , [6] ] , [ [7] , [8] ] ];
var flattened =[];
grul.atMeta(matrix,[Array,Array,Array],function(input){
    flattened.push(input);
});
console.log(flattened);
//  [ 5 , 6 , 7 , 8 ]

Mixin type and literal path values at any time

var data = [
    {"name":"Ryan","age":26},
    {"name":"Sarah","age":27}
];
var names =[];
grul.atMeta(data,[Array,"name"],function(input){
    names.push(input);
}); 
console.log(names);
//  [ "Ryan" , "Sarah" ]

Locate patterns within data sets

Useful for templating and expanding 1:many configurations

var data = [
    {"name":"Ryan","age":26, "Parents":[{"name":"Dorothy"}]},
    {"name":"Sarah","age":27}
]
grul.atPattern(data,[Array],function(input){
    console.log(input.name);
    // return false to stop recursion
});
// "Ryan"
// "Dorothy"
// "Sarah"

Attach head/tail recursive logic

var data = [
    {"name":"Ryan","age":26, "Parents":[{"name":"Dorothy"}]},
    {"name":"Sarah","age":27}
];
//no mutation
JSON.stringify(
    grul.atPattern(data,[Array,Object],{
        "head":function(input,typePath,literalPath,root){
            if(input.constructor !== Array && input.constructor !== Object){
                input+=" head mutation"
            }
        },
        "tail":function(input,typePath,literalPath,root){
            console.log( 
                grul.pluck( 
                    root ,
                    literalPath.slice(0,literalPath.length-1)
                )
            );
        }
    })
);
// {name: "Ryan", age: 26, Parents: [{name: "Dorothy"}]}
// {name: "Ryan", age: 26, Parents: [{name: "Dorothy"}]}
// {name: "Dorothy"}
// {name: "Ryan", age: 26, Parents: [{name: "Dorothy"}]}
// {name: "Sarah", age: 27}
// {name: "Sarah", age: 27}
// "[{\"name\":\"Ryan\",\"age\":26,\"Parents\":[{\"name\":\"Dorothy\"}]},{\"name\":\"Sarah\",\"age\":27}]"
//mutates
JSON.stringify(
    grul.atPattern(data,[Array,Object],{
        "head":function(input,typePath,literalPath,root){
            if(input.constructor !== Array && input.constructor !== Object){
                grul.pluck(root,literalPath,input+" head mutation")
            }
        },
        "tail":function(input,typePath,literalPath,root){
            console.log( 
                grul.pluck( 
                    root ,
                    literalPath.slice(0,literalPath.length-1)
                )
            );
        }
    })
);
// {name: "Ryan head mutation", age: 26, Parents: [{name: "Dorothy"}]}
// {name: "Ryan head mutation", age: "26 head mutation", Parents: [{name: "Dorothy"}]}
// {name: "Dorothy head mutation"}
// {name: "Ryan head mutation", age: "26 head mutation", Parents: [{name: "Dorothy head mutation"}]}
// {name: "Sarah head mutation", age: 27}
// {name: "Sarah head mutation", age: "27 head mutation"}
// "[{\"name\":\"Ryan head mutation\",\"age\":\"26 head mutation\",\"Parents\":[{\"name\":\"Dorothy head mutation\"}]},{\"name\":\"Sarah head mutation\",\"age\":\"27 head mutation\"}]"

Hierarchically group datasets with declarative templates

grul.atHierarchy([   
    {EntityId:1,Action:"Transformed",Status:"Completed",Date:"2019-01-03"},
    {EntityId:1,Action:"Disappeared",Status:"Completed",Date:"2019-01-04"},
    {EntityId:2,Action:"Disappeared",Status:"In-Progress",Date:"2019-01-04"}    
],
[{
    name: {
        "head": (row, typePath, literalPath, template) => row.Action
    },
    value: {
        "tail": (rows, typePath, literalPath, template) => rows.length
    },
    records:{
        "tail": (rows, typePath, literalPath, template ) => rows
    },
    children: [{
        name: {
            "head": (row, typePath, literalPath, template) => row.Status
        },
        value: {
            "tail": (rows, typePath, literalPath, template) => rows.length
        },
        records: {
            "tail": (rows, typePath, literalPath, template ) => rows
        }
    }]
}])
/* Hierarchical output as processed by declarative template
    [{
        name:"Transformed",
        value:1,
        records:[{EntityId:1,Action:"Transformed",Status:"Completed",Date:"2019-01-03"}],
        children:[  {   name:"Completed",
                        value:1,
                        records:[{EntityId:1,Action:"Transformed",Status:"Completed",Date:"2019-01-03"}]
                    }]
    },{
        name:"Disappeared",
        value:2,
        records:[   {EntityId:1,Action:"Disappeared",Status:"Completed",Date:"2019-01-04"},
                    {EntityId:2,Action:"Disappeared",Status:"In-Progress",Date:"2019-01-04"}    ],
        children:[  {   name:"Completed",
                        value:1,
                        records:[{EntityId:1,Action:"Disappeared",Status:"Completed",Date:"2019-01-04"}]
                    },
                    {   name:"In-Progress",
                        value:1,
                        records:[{EntityId:2,Action:"Disappeared",Status:"In-Progress",Date:"2019-01-04"}]
                    }],
    }]
 */

Intelligently segment and prune multi-dimensional recursive patterns

grul.atSegment({"Users":[{
        "name":"Ryan",
        "Projects":[{
            "name":"Payment Gateway",
            "duration":4
        },{
            "name":"Event Registration",
            "duration":4
        }],
        "Transactions":[5,6,7,8]
        
    },{
        "name":"Justin",
        "Projects":[{
            "name":"Customer Relations Management",
            "duration":4
        },{
            "name":"Alumni Management Services",
            "duration":4
        }],
        "Transactions":[1,2,3,4]
    }]
},
{
    "include":[["Users"]],
    "exclude":[["Transactions"]]
},
(data,htp,hlp,hop)=>{},{
    depth:1,
    lag:0
}).map(data=>data.data)[0];
/* Expected Pruned output
 [
  {
    "name": "Ryan",
    "Projects": [
      {
        "name": "Payment Gateway",
        "duration": 4
      },
      {
        "name": "Event Registration",
        "duration": 4
      }
    ]
  },
  {
    "name": "Justin",
    "Projects": [
      {
        "name": "Customer Relations Management",
        "duration": 4
      },
      {
        "name": "Alumni Management Services",
        "duration": 4
      }
    ]
  }
]
 
 */

Traverse custom class instances

//Defines ES5 "class"
function test(){
    this.funcMembString="test"
}

//traverses data hierarchy with custom ES5 "class"
grul.atMeta({
    test:{
        sub1:"branch1",
        sub2:new test()
    }
},[
    ["test","sub1"],
    ["test","sub2","funcMembString"]
],(data)=>{
    console.log(data)
});

JSON structure/data differential based on RFC 6902 ( atDiff )


let newest = { name:"Mary Jane", parents:["Barb","John"], transactions:[10,-10,30,-10], dependents:[] };
let old1 = { name:"Mary Smith", parents:["Barb","Jon"], transactions:[10,-10,30], dependents:["Steve"] };
let old2 = { name:"Mary Jane", parents:["Barb","John"], transactions:[10,-30,30,-10], dependents:["Steve"] };
// generate patches?
grul.atDiff( [ newest, old1 ] , (patch)=>{ console.log(patch) } , 0 );
// generate patches for multiple stores?
grul.atDiff( [ newest, old1, old2 ] , (patch)=>{ console.log(patch) } , 0 );
// generate patches in the opposite direction?
grul.atDiff( [ newest, old1 ] , (patch)=>{ console.log(patch) } , 1 );

Circular Reference Halting

let circ1 = { "key":1, "foreign":null };    //object as an entry point
let circ2 = { "key":2, "foreign":circ1 };   //object as a secondary reference
circ1.foreign = circ2;                      //attach circ1.foreign to circ2.foreign
grul.atPattern(circ1,[Object],{
	"head":(data,htp,hlp,hop)=>{ 
		console.log("circular reference halting test");
	}
});
//upon reaching a circular traversal path, program will recursively return stopping additional paths (logging out the traversal as well)
//expected output in this case would be "data traversal halted @ foreign-foreign"

Modify default custom enumerator(s)

//Custom ES5 'Class'
function customType(){
    this.GetCustomEntries = ()=>{
        return ["another","object"];
    };
    this.GetOtherCustomEntries = ()=>{
        return ["other","object"];
    };
}
//single enumerator
grul.extend(customType,(data, metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct)=>{
        this.atPattern(data.GetCustomEntries(), metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct);
});
//multiple enumerators
grul.extend(customType,
[
    (data, metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct)=>{
        this.atPattern(data.GetCustomEntries(), metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct);
    },
    (data, metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct)=>{
        this.atPattern(data.GetOtherCustomEntries(), metaPath, logic, relativity, nhtpath, nhlpath, newMeta, rootData, direct);
    }
]);

Additional Features

  • shallowest pattern searches at arbitrary depth ( atShallowestPattern )
  • deepest patterns searches at arbitrary depth ( atDeepestPattern )
  • normal recursive tree traversal with halting capabilities ( atEvery )
  • define patterns with object templates ( atMatching )
  • retrieve primitives ( atEnds )

Planned Future Changes

  • User defined computation rules (faster large set computation)
    • Scalable Web Workers
    • Promise.then()

Advanced Examples

Generate multi-dimensional trees from array structures ( logarithmically linked subdivisions )

Review grul.atSubdivision in snippet below. This example generates a list of players at specific ratings while generating a bracket for these players as well as creating a play schedule

let [numUsers, bracketSize, minRating, maxRating, playerIndex, brackets, bracketTree] = [560,8,0,200,0,[],{}];
let players = new Array(numUsers).fill(null);

// Generate list of 560 players with random ratings
players = players.map((blank,index)=>{
    let aPlayer = { name:`Player ${index}`, rating:Math.floor(((Math.random()*(maxRating - minRating)) - minRating)) };
    return aPlayer;
});

// Sort list of 560 players by random rating assignment
players = players.sort((a,b)=>{ 
    return a.rating < b.rating  ? -1 : 1;
});

// Generate bracket groupings
brackets = grul.atHierarchy(players,[{
    Name:{
        "head":(row)=>{
            let groupName = `Group ${Math.floor(playerIndex/bracketSize)}`;
            playerIndex++;
            return groupName;
        }
    },
    Players:{
        "tail":(rows)=>{
            return rows;
        }
    },
    Matches:{
        "tail":(rows)=>{
            let matchList = [];
            let playerCount = rows.length;
            for(var i=0; i < rows.length/2; i++){
                let match = [ rows[i] , rows[((rows.length-i)-1)] ];
                matchList.push(match);
            }
            return matchList;
        }
    },
    Statistics:{
        "tail":(rows)=>{
            let bracketStatistics = rows.reduce((accumulator,player)=>{
                accumulator.min = player.rating < accumulator.min ? player.rating : accumulator.min;
                accumulator.max = player.rating > accumulator.max ? player.rating : accumulator.max;
                accumulator.cumulative = accumulator.cumulative + player.rating;
                return accumulator;
            },{ min:Infinity, max:0, cumulative:0 });
            bracketStatistics.average = bracketStatistics.cumulative / rows.length;
            return bracketStatistics;
        }
    }
}]);

bracketTree = {
    "Rating Groups":brackets.map((bracket)=>{

        // subdivide player matchups into groups representing advancement state of each matchup
        let bracketSchedule = grul.atSubdivision(bracket.Matches,2,(data,ntp,nlp)=>{
            data.winner = Math.floor(Math.random()*2); // add randomized winner for the player advanced ()
        });

        return { 
            "schedule":bracketSchedule,
            "average":bracket.Statistics.average,
            "range":{
                "min":bracket.Statistics.min, "max": bracket.Statistics.max,
            }
        }
    })
}

console.log(bracketTree);