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

nv-data-tree-bp-agg

v1.0.1

Published

nv-data-tree-bp-agg ======================== - nv-data-tree-bp-agg - a simple expression runner - for test "parallel" exprs excution

Downloads

3

Readme

nv-data-tree-bp-agg

  • nv-data-tree-bp-agg

  • a simple expression runner

  • for test "parallel" exprs excution

  • ONLY support SYNC executor

  • its a simplified pure-JS version of nv-task-aggregating-promise(which support async executor) in nvlang

install

  • npm install nv-data-tree-bp-agg

usage

  const {load_calc_from_bp} = require("nv-data-tree-bp-agg")

load [...code...] is quotes of code

    // this means   ((1,2,3)+ , (5,3)-) *     , in a suffix-style
    //     *(+(1,2,3),-(5,3))
    //     (1+2+3) * (5-3)         

    var bp =`
    {
       {[1] ,[2] ,[3]} -> [+]
       {[5], [3]}      -> [-]
    } -> [*] 
    `;




    var calc = load_calc_from_bp(bp)
    calc.reset()
    /*
    > calc.show()
    {
        {
            {
                [1 : opened]-|
                [2 : opened]-|
                [3 : opened]-|
            }-> [+ : ready]     -|
            {
                [5 : opened]-|
                [3 : opened]-|
            }-> [- : ready]     -|
        }-> [* : ready]         -|
    }-> [0 : ready]

    > calc.list_all_tags()
    [
      0,   '*', '+', '1',
      '2', '3', '-', '5',
      '3'
    ]
    >
    */

assign function IR

    calc.set_calculator_via_tag('+',(RETURN,self)=>{
        let children = self.$children_;
        let sum = 0;
        for(let nd of children) {
            sum = sum + nd.rslt_
        }
        RETURN(sum)
    });
    calc.set_calculator_via_tag('-',(RETURN,self)=>{
        let children = self.$children_;
        let sub = children[0].rslt_;
        for(let i =1;i<children.length;i++) {
            let nd = children[i];
            sub = sub-nd.rslt_
        }
        RETURN(sub)
    });
    calc.set_calculator_via_tag('*',(RETURN,self)=>{
        let children = self.$children_;
        let mul = 1;
        for(let nd of children) {
            mul = mul * nd.rslt_
        }
        RETURN(mul)
    });

    calc.set_calculator_via_tag_fltr(
        (r)=>typeof(r)==='string'  && /^[0-9]+$/.test(r),
        (RETURN,self)=>{
            RETURN(Number(self["#raw_tag"]))
       }
    );

run to complete

    var r = calc.run_to_complete()
    /*
           // 12 === (1+2+3) * (5-3)  
    12
    */

single step mode

    calc.reset();

    calc.next()

    /*
    >
    [ 1, 2, 3, 5, 3 ]
    */

    /*
    > calc.show()
    {
        {
            {
                [1 : 1 # [resolved]-|
                [2 : 2 # [resolved]-|
                [3 : 3 # [resolved]-|
            }-> [+ # opened]           -|
            {
                [5 : 5 # [resolved]-|
                [3 : 3 # [resolved]-|
            }-> [- # opened]           -|
        }-> [* # ready]                -|
    }-> [0 # ready]

    */


    calc.next()

    /*
    [6,2]
    */

    /*
    > calc.show()
    {
        {
            {
                [1 : 1 # [resolved]-|
                [2 : 2 # [resolved]-|
                [3 : 3 # [resolved]-|
            }-> [+ : 6 # [resolved]    -|
            {
                [5 : 5 # [resolved]-|
                [3 : 3 # [resolved]-|
            }-> [- : 2 # [resolved]    -|
        }-> [* # opened]               -|
    }-> [0 # ready]

    */

    /*
    > calc.next()
    [ 12 ]
    >
    > calc.show()
    {
        {
            {
                [1 : 1 # [resolved] -|
                [2 : 2 # [resolved] -|
                [3 : 3 # [resolved] -|
            }-> [+ : 6 # [resolved]     -|
            {
                [5 : 5 # [resolved] -|
                [3 : 3 # [resolved] -|
            }-> [- : 2 # [resolved]     -|
        }-> [* : 12 # [resolved]        -|
    }-> [0 # opened]

    */

    /*
    > calc.next()
    [ 12 ]
    > calc.show()
    {
        {
            {
                [1 : 1 # [resolved] -|
                [2 : 2 # [resolved] -|
                [3 : 3 # [resolved] -|
            }-> [+ : 6 # [resolved]     -|
            {
                [5 : 5 # [resolved] -|
                [3 : 3 # [resolved] -|
            }-> [- : 2 # [resolved]     -|
        }-> [* : 12 # [resolved]        -|
    }-> [0 : 12 # [resolved]

    */

    calc.reset()

METHODS

Calc

    calc.get_nds_with_tag             calc.get_nds_with_tag_fltr
    calc.get_nds_with_tag_rgx         calc.list_all_tags                calc.next
    calc.reset                        calc.run_to_complete              calc.set_calculator_via_tag
    calc.set_calculator_via_tag_fltr  calc.set_calculator_via_tag_rgx   calc.shape_bp_
    calc.show

BpAgg

    nd.dump_shape
    nd.is_can_exec                             nd.is_opened
    nd.is_ready                                nd.is_resolved
    nd.rslt_                                   nd.run
    nd.set_state_to_opened                     nd.set_state_to_ready
    nd.set_state_to_resolved                   nd.show
    nd.state_                                  nd.step
    nd.step_without_noti_parent                nd.to_str
    nd.calculator                              nd.stringify

APIS

    {
      load_calc_from_bp: [Function: load_calc_from_bp],
      Calc: [class Calc extends Array],
      BpAgg: [class BpAgg extends ‌] {
        STATES_MD: {
          '0': 'ready',
          '2': 'opened',
          '4': 'resolved',
          ready: 0,
          opened: 2,
          resolved: 4
        },
        DFLT_AGG_CALCULATOR: [Function: DFLT_AGG_CALCULATOR]
      },
      _eng: { load: [Function: load], dump: [Function: dump] },
      _paint: [Function: paint],
      _parser: {
        DFLT_TAG_PARSER: [Function: DFLT_TAG_PARSER],
        DFLT_SET_TAG: [Function: DFLT_SET_TAG],
        DFLT_GET_TAG: [Function: DFLT_GET_TAG],
        parse: [Function: parse]
      },
      _repr: { show: [Function: show] },
      _load: { load: [Function: load] }
    }

LICENSE

  • ISC