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

hyperledger-json-parsor

v1.0.9

Published

A wrapper/ adapter node.js script, which accepts a single parameter name and returns it’s value (single/ multiple), by consuming the underlying /metrics API output in real time and allows developers to create the necessary and well aligned simple API to f

Downloads

4

Readme

hyperledger-json-parsor

Fast, lightweight, Hyperledger JSON data parser developed by Xoriant Solutions Pvt. Ltd..

A wrapper/ adapter node.js script, which accepts a single parameter name and returns it’s value (single/ multiple), by consuming the underlying /metrics API output in real time and allows developers to create the necessary and well aligned simple API to feed all widgets.

Features

  • Extensible – The solution can be extended to work for any other platforms which readily provide Prometheus-aligned multi-valued metrics values but the front-end requires a single parameter to be fetched.
  • Data Parsing at Server Side – No need to write any client side code to parse data.
  • Easy to configure – One time configurations through config files for host server details.

Installation

$ npm install hyperledger-json-parsor
var hyperJsonParser = require('hyperledger-json-parsor');
let inputData = {
        apiURL: 'YOUR_HOST_URL',
        parameter: 'PARAMETER_ID',
        recordType: 'multiple'
    }
let data = hyperJsonParser.getRemoteData(inputData);
    data.then(function (result) {
        //do your stuff
    }, function (err) {
        //error block
    })

inputData

The inputData argument allows you to customize the request with the following properties:

  • apiURL: to define the GET API URL from which response is coming.
  • parameter: to set specific key/parameter id to get values.
  • recordType: to define single or multiple values required in response. Possible values are single, multiple.

Raw Data

# HELP endorser_propsal_duration The time to complete a proposal.
# TYPE endorser_propsal_duration histogram
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.005"} 0
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.01"} 0
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.025"} 0
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.05"} 1
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.1"} 1
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.25"} 1
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="0.5"} 1
endorser_propsal_duration_bucket{chaincode="cscc:",channel="",success="true",le="1"} 1

Sample Input

let inputData = {
        apiURL: 'YOUR_HOST_URL',
        parameter: 'endorser_propsal_duration_bucket',
        recordType: 'single'
    }

Sample Output

{
    "id": "endorser_propsal_duration_bucket",
    "name": "endorser_propsal_duration_bucket",
    "value": "0",
    "label": "cscc:,channel"
}

Sample Input

let inputData = {
        apiURL: 'YOUR_HOST_URL',
        parameter: 'endorser_propsal_duration_bucket',
        recordType: 'multiple'
    }

Sample Output

[
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "0",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "0",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "0",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "1",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "1",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "1",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "1",
        "label": "cscc:,channel"
    },
    {
        "id": "endorser_propsal_duration_bucket",
        "name": "endorser_propsal_duration_bucket",
        "value": "1",
        "label": "cscc:,channel"
    }
]