Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

catchart

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

catchart - npm Package Compare versions

Comparing version 2.0.9 to 2.0.10

2

package.json
{
"name": "catchart",
"version": "2.0.9",
"version": "2.0.10",
"description": "Pipe something from command line to a browser chart",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -14,3 +14,3 @@ const program = require('commander')

This can be a singular value or an array. When "auto" is set, these fields will be "value" or "data".
When input format is csv dataField is ignored`, 'auto')
When input format is csv dataField is ignored`, config.dataField)
.option('--labelSource <labelSource>',

@@ -21,3 +21,3 @@ `When the input format is json, labels are obtained from each row using a specific field, specified through this option.

to the data point. Setting labelSource to "row" will case the label to be extracted from the data, specifically the first
value in each row will be considered the label`, 'auto')
value in each row will be considered the label`, config.labelSource)
.option('--showValueLabels', 'show labels on values in the chart', config.showValueLabels)

@@ -28,4 +28,4 @@ .option('--noFill', 'Do not fill the area under the chart line with color', config.noFill)

.option('--port <port>', 'hcat config: http port to use, defaults to a randomly picked port', 0)
.option('--hostname <hostname>', 'hcat config: hostname of the http server', 'localhost')
.option('--contentType <contentType>', 'hcat config: content type of the response', 'text/html')
.option('--hostname <hostname>', 'hcat config: hostname of the http server', config.hostname)
.option('--contentType <contentType>', 'hcat config: content type of the response', config.contentType)
.option('--shutdownDelay <millis>', 'delay (in ms) before shutting down server once ths input stream ended', 1000)

@@ -32,0 +32,0 @@ .parse(process.argv)

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc