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

hexaflake-cli

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexaflake-cli

Print the Hexaflake fractal to the console!

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

hexaflake-cli

Print the Hexaflake fractal to the console!

What hexaflake-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 hexaflake-cli <n>
$ npx hexaflake-cli <n> [size] [options]

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

Via Global Install

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

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

Via Import

$ npm install hexaflake-cli

then:

const hexaflake = require('hexaflake-cli');
console.log(hexaflake.create(<n>));
console.log(hexaflake.create(<n>, { 
    size: <number>, 
    character: <character> 
}));

The config params are optional.

Options

Recursive Step

$ hexaflake-cli <n>

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

Examples:

$ hexaflake-cli 2

What hexaflake-cli prints to the console

$ hexaflake-cli 3

What hexaflake-cli prints to the console

Size

$ hexaflake-cli <n> [size]

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

Example:

$ hexaflake-cli 2 3

What hexaflake-cli prints to the console

Custom Characters

$ hexaflake-cli <n> --character=<character>

The optional --character=<character> param will draw hexagons using the provided character. (Please provide only 1 character)

Example:

$ hexaflake-cli 1 3 --character=*

What hexaflake-cli prints to the console

Main Project

  • fractals-cli - Print 22 Fractals to the console

Fractal Shapes

Fractal Patterns

Space Filling Curves

License

Keywords

Hexaflake

FAQs

Package last updated on 19 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