Socket
Socket
Sign inDemoInstall

freetree

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    freetree

A node module for creating a tree from text input


Version published
Weekly downloads
3.7K
increased by6.09%
Maintainers
1
Install size
9.33 kB
Created
Weekly downloads
 

Readme

Source

freetree

A node module for creating tree data structure from text input

build status

This module takes a simplified tree structured input string and build a JavaScript tree object in memory.

A simple tree structured input string (input.txt) example:

#root node
##node1
###node11
##node2

It illustrates a tree as below:

root node
 |-- node1
 |    |--node11
 |-- node2

Conventions

Each line represents a node in the tree, it should begins with the leading character (default is #). The count of leading chracters minus 1 is the level of the node. There should be only 1 root node which has only 1 leading character, and it should be at the first line of the input string.

Usage

var freetree = require('freetree');
var tree = freetree.parse(str, settings);

settings has below listed properties

  • leadingChar: optional, defines leading character for the tree, defaulted to '#'
  • compact: optional, output the object in compact mode.

Code examples

Prepare an input.txt file as above demonstrated.

var fs = require('fs');
var freetree = require('freetree');
var str = fs.readFileSync('input.txt', 'utf8');
var tree = freetree.parse(str);

then, the tree object is an in-memory JavaScript object. In this example, the object is in structure:

{
    "level": 0,
    "value": "root",
    "nodes": [{
        "level": 1,
        "value": "node1",
        "nodes": [{
            "level": 2,
            "value": "node11"
        }]
    }, {
        "level": 1,
        "value": "node2"
    }]
}

If the compact option is set to true, the object will be compressed in below structure:

{
    "root": [{
        "node1": [{
            "node11": null
        }]
    }, {
        "node2": null
    }]
}

Test

Make sure mocha is installed globally

npm install mocha -g

Run npm test to run unit test

License

MIT

Keywords

FAQs

Last updated on 23 Jun 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc