New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jsontree

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsontree

Converts a JSON object into an Ordered Labeled Tree (OLT)

latest
Source
npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

An Ordered Labeled Tree(OLT) is a data structure that consists of nodes with labels and children, where the children are nodes themselves. The order of the children is significant. There are a number of algorithms for calculating the difference (like the diff command does for text data) for these data structures.

This module takes a JSON data structure and creates a corresponding OLT.

  assert.deepEqual(jsontree.toTree({
   "key": "value",
   "list": [
     "one",
     "two"
   ],
   "object": {
     "woho": "works"
   }
  }), {
    "type": "Object",
    "children": [
      {
        "type": "Value",
        "name": "key",
        "value": "value"
      },
      {
        "type": "List",
        "name": "list",
        "children": [
          {
            "type": "Value",
            "value": "one"
          },
          {
            "type": "Value",
            "value": "two"
          }
        ]
      },
      {
        "type": "Object",
        "name": "object",
        "children": [
          {
            "type": "Value",
            "name": "woho",
            "value": "works"
          }
        ]
      }
    ]
  });

Note that each node has up to four fields:

  • type
  • name
  • value
  • children

This is not a problem, since the set [type, name, value] can be considered as the label of the node.

Why

I'm looking into creating a diff tool for the Abstract Syntax Tree's of JavaScript code. The AST can be generated using esprima, but this will give us a syntax tree in the format of a JavaScript object. The existing algorithms for calculating tree differences only works on OLT's.

See Simple fast algorithms for the editing distance between trees and related problems by K. Zhang and D. Shasha.

FAQs

Package last updated on 06 Jun 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts