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 🙏

© 2026 – Pkg Stats / Ryan Hefner

acryl-bias-hichart

v0.2.2

Published

It is a data visualization library based on hichart and d3.js.

Readme

Bias-Hichart

Highcharts와 d3.js 기반 데이터시각화 라이브러리 입니다.
git-pages: https://github.com/Dawson-Park/bias-hichart

Installation

npm i acryl-bias-hichart

usage

Bar Chart

1bar

/* *.js || *.ts */
const data = [
	[1, 2, 3, 4, 5],
	[5, 4, 2, 3, 1],
	[8, 1, 6, -1, 4],
	[7, 6, 5, 2, 3],
];
const seriesName = [ "New Jersey", "Iowa", "Wisconsin", "Missouri" ];
const xAxis = ["up", "down", "left", "right"];

new Bar({
  data, // 차트에 표시할 데이터
  targetId: "BarTest", // 차트를 표시할 요소의 id(#제외)
  seriesName, // 각 데이터 그룹의 이름
  xAxis, // x축에 표시할 내용
  title: "Bar", // 차트의 제목
  subtitle: "BarTest", // 차트의 소제목
  legend: true // 데이터 그룹에 대한 표시 유무
}).show();

/* *.html */
<div id="BarTest" />

| Parameter | Type | Default | |------------|--------------|-------------| | data | number[][] | @required | | targetId | string | @required | | seriesName | string[] | [] | | xAxis | string[] | undefined | | colorSet | string[] | [] | | title | string | undefined | | subtitle | string | undefined | | legend | boolean | undefined |

3d Bar Chart

2bar3d

/* *.js || *.ts */
const data = [
	[1, 2, 3, 4, 5],
	[5, 4, 2, 3, 1],
	[8, 1, 6, -1, 4],
	[7, 6, 5, 2, 3],
];
const seriesName = [ "New Jersey", "Iowa", "Wisconsin", "Missouri" ];
const xAxis = ["up", "down", "left", "right"];

new Bar3d({
  data, // 차트에 표시할 데이터
  targetId: "Bar3dTest", // 차트를 표시할 요소의 id(#제외)
  seriesName, // 각 데이터 그룹의 이름
  xAxis, // x축에 표시할 내용
  title: "Bar3d", // 차트의 제목
  subtitle: "Bar3dTest", // 차트의 소제목
  legend: true // 데이터 그룹에 대한 표시 유무
}).show();

/* *.html */
<div id="Bar3dTest" />

| Parameter | Type | Default | |------------|--------------|-------------| | data | number[][] | @required | | targetId | string | @required | | seriesName | string[] | [] | | xAxis | string[] | undefined | | colorSet | string[] | [] | | title | string | undefined | | subtitle | string | undefined | | legend | boolean | undefined |

Spider Chart

3spider

/* *.js || *.ts */
const data = [
	[1, 2, 3, 4, 5],
	[5, 4, 2, 3, 1],
	[8, 1, 6, -1, 4],
	[7, 6, 5, 2, 3],
];
const seriesName = [ "New Jersey", "Iowa", "Wisconsin", "Missouri" ];
const xAxis = ["up", "down", "left", "right"];

new Spider({
  data, // 차트에 표시할 데이터
  targetId: "SpiderTest", // 차트를 표시할 요소의 id(#제외)
  seriesName, // 각 데이터 그룹의 이름
  xAxis, // x축에 표시할 내용
  title: "Spider", // 차트의 제목
  subtitle: "SpiderTest", // 차트의 소제목
  legend: true // 데이터 그룹에 대한 표시 유무
}).show();

/* *.html */
<div id="SpiderTest" />

| Parameter | Type | Default | |------------|--------------|-------------| | data | number[][] | @required | | targetId | string | @required | | seriesName | string[] | [] | | xAxis | string[] | undefined | | colorSet | string[] | [] | | title | string | undefined | | subtitle | string | undefined | | legend | boolean | undefined |

Polar Chart

4polar

/* *.js || *.ts */
const data = [
	[1, 2, 3, 4, 5],
	[5, 4, 2, 3, 1],
	[8, 1, 6, -1, 4],
	[7, 6, 5, 2, 3],
];
const seriesName = [ "New Jersey", "Iowa", "Wisconsin", "Missouri" ];
const xAxis = ["up", "down", "left", "right"];

new Polar({
  data, // 차트에 표시할 데이터
  targetId: "PolarTest", // 차트를 표시할 요소의 id(#제외)
  seriesName, // 각 데이터 그룹의 이름
  xAxis, // x축에 표시할 내용
  title: "Polar", // 차트의 제목
  subtitle: "PolarTest", // 차트의 소제목
  legend: true // 데이터 그룹에 대한 표시 유무
}).show();

/* *.html */
<div id="PolarTest" />

| Parameter | Type | Default | |------------|--------------|-------------| | data | number[][] | @required | | targetId | string | @required | | seriesName | string[] | [] | | xAxis | string[] | undefined | | colorSet | string[] | [] | | title | string | undefined | | subtitle | string | undefined | | legend | boolean | undefined |

Scatter Chart

5scatter

/* *.js || *.ts */
const scatterData = [
	[ [161.2, 51.6], [167.5, 59.0], [159.5, 49.2], [157.0, 63.0], [155.8, 53.6], ],
	[ [170.0, 59.0], [159.1, 47.6], [166.0, 69.8], [176.2, 66.8], [160.2, 75.2], ],
	[ [172.5, 55.2], [170.9, 54.2], [172.9, 62.5], [153.4, 42.0], [160.0, 50.0], ],
	[ [147.2, 49.8], [168.2, 49.2], [175.0, 73.2], [157.0, 47.8], [167.6, 68.8], ]
];
const seriesName = [ "New Jersey", "Iowa", "Wisconsin", "Missouri" ];

new Scatter({
  data: scatterData, // 차트에 표시할 데이터
  targetId: "scatterTest", // 차트를 표시할 요소의 id(#제외)
  seriesName, // 각 데이터 그룹의 이름
  xAxis: "xAxis", // label에 표시할 x축의 이름
	yAxis: "yAxis", // label에 표시할 y축의 이름
  title: "Scatter", // 차트의 제목
  subtitle: "scatterTest", // 차트의 소제목
  legend: true // 데이터 그룹에 대한 표시 유무
}).show();

/* *.html */
<div id="scatterTest" />

| Parameter | Type | Default | |------------|----------------|-------------| | data | number[][][] | @required | | targetId | string | @required | | xAxis | string | undefined | | yAxis | string | undefined | | seriesName | string[] | [] | | colorSet | string[] | [] | | title | string | undefined | | subtitle | string | undefined | | legend | boolean | undefined |

Network Chart

6network

/* *.js || *.ts */
const networkData = {
	input: 8,
	hidden: 12,
	output: 6
};

new Network({
  node: networkData,
  targetId: "networkTest",
  accent: [1, 3, 5]
}).show();

/* *.html */
<div id="networkTest" />

| Parameter | Type | Default | |-----------|-----------------------------|-------------| | node | { input, hidden, output } | @required | | targetId | string | @required | | layer | string | 1 | | accent | string | [] | | colorSet | string[] | undefined |

Histogram Chart

7histogram

/* *.js || *.ts */
const histoData = [
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
	[ 0, 10, 0, 2, 0, 3, 0 ],
];
const histoAxis = [ -200, -150, 0, 100, 200, 300, 400 ];

new Histogram({
  node: histoData,
  targetId: "HistogramTest",
  xAxis: histoAxis,
}).show();

/* *.html */
<div id="HistogramTest" />

| Parameter | Type | Default | |-------------|-----------------|-------------| | data | number[][] | @required | | targetId | string | @required | | xAxis | number[] | @required | | width | number | 600 | | height | number | 400 | | padding | number | 30 | | innerHeight | number | 300 | | margin | [top, bottom] | [40, 40] |