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

cli-graph

v3.2.2

Published

Easily draw function graphs in text mode.

Downloads

4,472

Readme

cli-graph

cli-graph PayPal Travis Version Downloads Get help on Codementor

Easily draw function graphs in text mode.

:cloud: Installation

$ npm i --save cli-graph

Or you can check out the browser version, online.

:clipboard: Example

// Dependencies
var CliGraph = require("cli-graph");

// Create a new function graph
var g1 = new CliGraph({
    height: 20
  , width: 20
  , center: { y: 18 }
}).setFunctionX(function (x) {
    return x * x / 5;
});
console.log(g1.toString());
// =>
//                     ▲
//                     │
//   •                 │                 •
//                     │
//                     │
//     •               │               •
//                     │
//                     │
//       •             │             •
//                     │
//                     │
//         •           │           •
//                     │
//           •         │         •
//                     │
//             •       │       •
//               •     │     •
//                 •   │   •
// ──────────────────•─•─•────────────────▶
//                     │

// Another function
var g2 = new CliGraph({
    height: 30
  , width: 30
  , marks: {
        hAxis: '-'
      , vAxis: '|'
      , center: '+'
      , point: '.'
  }
});

g2.setFunctionX(function (x) {
    return x;
});

console.log(g2.toString());
// =>
//                               ▲
//                               |                           .
//                               |                         .
//                               |                       .
//                               |                     .
//                               |                   .
//                               |                 .
//                               |               .
//                               |             .
//                               |           .
//                               |         .
//                               |       .
//                               |     .
//                               |   .
//                               | .
// ------------------------------.----------------------------▶
//                             . |
//                           .   |
//                         .     |
//                       .       |
//                     .         |
//                   .           |
//                 .             |
//               .               |
//             .                 |
//           .                   |
//         .                     |
//       .                       |
//     .                         |
//   .                           |

var circle = new CliGraph({ height: 32, width: 32 }).setFunctionX(function (x) {
    return Math.sqrt(200 - x * x);
}).setFunctionX(function (x) {
    return -Math.sqrt(200 - x * x);
}).setFunctionY(function (y) {
    return Math.sqrt(200 - y * y);
}).setFunctionY(function (y) {
    return -Math.sqrt(200 - y * y);
});


console.log(circle.toString());
// =>
//                                 ▲
//                                 │
//                         • • • • • • • • •
//                     • •         │         • •
//                 • •             │             • •
//               •                 │                 •
//             •                   │                   •
//           •                     │                     •
//         •                       │                       •
//         •                       │                       •
//       •                         │                         •
//       •                         │                         •
//     •                           │                           •
//     •                           │                           •
//     •                           │                           •
//     •                           │                           •
// ────•───────────────────────────┼───────────────────────────•──▶
//     •                           │                           •
//     •                           │                           •
//     •                           │                           •
//     •                           │                           •
//       •                         │                         •
//       •                         │                         •
//         •                       │                       •
//         •                       │                       •
//           •                     │                     •
//             •                   │                   •
//               •                 │                 •
//                 • •             │             • •
//                     • •         │         • •
//                         • • • • • • • • •
//                                 │

:memo: Documentation

CliGraph(options)

Creates a new CliGraph instance.

Example:

var g = new CliGraph();

Params

  • Object options: An object containing the following fields:
  • height (Number): The graph height (default: 40).
  • width (Number): The graph width (default: 60).
  • aRatio (Number): The horizontal aspect ratio (default: 2).
  • center (Object): An object containing:
    • x (Number): The x origin (default: width / 2)
    • y (Number): The y origin (default: height / 2)
  • marks (Object): An object containing:
    • hAxis (String): The character for drawing horizontal axis (default "─").
    • vAxis (String): The character for drawing vertical axis (default "│").
    • center (String): The character for axis intersection (default "┼").
    • point (String): The character for drawing points (default "•").
    • rightArrow (String): The character for drawing the right arrow (default "▶").
    • topArrow (String): The character for drawing the top arrow (default "▲").
    • background (String): The background character (default " ").

Return

  • CliGraph The CliGraph instance.

addPoint(x, y, chr)

Adds a point on the x and y coordinates.

Params

  • Number x: The x coordinate.
  • Number y: The y coordinate.
  • String chr: The point character (default: the one provided in defaults).

Return

  • CliGraph The CliGraph instance.

isPoint(x, y, chr)

Checks if on given coordinates there is a point.

Params

  • Number x: The x coordinate.
  • Number y: The y coordinate.
  • String chr: The point character (default: the one provided in defaults).

toString()

Stringifies the graph.

Return

  • String The stringified graph.

setFunctionX(foo, min, max, chr)

Adds the function on the graph, iterating the x axis.

Params

  • Function foo: A function that receives x as the first parameter and returns the y value.
  • Number min: The minimum x (default: the lowest possible value).
  • Number max: The maximum x.(default: the highest possible value).
  • String chr: The point character (default: the one provided in defaults).

Return

  • CliGraph The CliGraph instance.

setFunctionY(foo, min, max, chr)

Adds the function on the graph, iterating the y axis.

Params

  • Function foo: A function that receives y as the first parameter and returns the x value.
  • Number min: The minimum y (default: the lowest possible value).
  • Number max: The maximum y.(default: the highest possible value).
  • String chr: The point character (default: the one provided in defaults).

Return

  • CliGraph The CliGraph instance.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

  • ascii-heart (by Nuvi Pannu)—Create ASCII hearts using Node.js.
  • cli-circle—Generate ASCII circles with NodeJS.
  • datanow (by Glen Arrowsmith)—DataNow.io's command line tool and node SDK.

:scroll: License

MIT © Ionică Bizău