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

h-tree-cli

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

h-tree-cli

Print the H-Tree fractal to the console!

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

h-tree-cli

Print the H-Tree Fractal to the console!

What h-tree-cli prints to the console

npm version bundle size downloads license

Why the console? Because it's the cool way.

See All Fractals in the fractals-cli project.

Usage

Via npx:

$ npx h-tree-cli <n>
$ npx h-tree-cli <n> [size] [options]

where n >= 0 and size >= n (if provided).

Via Global Install

$ npm install --global h-tree-cli
$ h-tree-cli <n>
$ h-tree-cli <n> [size] [options]

where n >= 0 and size >= n (if provided).

Via Import

$ npm install h-tree-cli

then:

const h_tree = require('h-tree-cli');
console.log(h_tree.create(<n>);
console.log(h_tree.create(<n>, { 
    size: <number>, 
    line: <bold|double|standard> 
});

The config params are optional.

Options

Recursive Step

$ h-tree-cli <n>

The first param <n> is the recursive step. <n> should be an integer greater than or equal to 0.

Examples:

$ h-tree-cli 7

What h-tree-cli prints to the console

$ h-tree-cli 9

What h-tree-cli prints to the console

Size

$ h-tree-cli <n> [size]

The optional [size] param allows the H-Tree fractal to be drawn at larger sizes. [size] should be an integer greater than or equal to <n>. Including size will draw a H-Tree fractal of <n> recursive steps the size of a H-Tree fractal with [size] recursive steps.

Example:

$ h-tree-cli 6 9

What h-tree-cli prints to the console

Line Type

$ h-tree-cli <n> --line=<bold|double|standard>

The optional --line param draws the H-Tree fractal using different line types. Supported values:

  • bold: Draw using bold lines
  • double: Draw using double lines
  • standard: Draw using standard lines (default)

Examples:

$ h-tree-cli 9 --line=bold

What h-tree-cli prints to the console

$ h-tree-cli 9 --line=double

What h-tree-cli prints to the console

Main Project

Fractal Shapes

Fractal Patterns

Space Filling Curves

License

Keywords

H-Tree

FAQs

Package last updated on 20 Feb 2023

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