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

turn-to-chart

v1.0.2

Published

Library which renders an HTML charts based on markdown or csv tables

Downloads

13

Readme

:memo::curly_loop::bar_chart: Transforms tables to charts

This library transforms a markdown or csv table into an HTML chart

It can be used both in the browser and node.

It is used in:

Example usage

  • First add it to your package with npm install turn-to-chart
  • Then use in your code:
import { generateHtmlString } from "turn-to-chart";

const inputString = `
| xLabel  | series1 (unit1) |
| :------ | ------ |
| 0 | 2000 |
| 1 | 4000 |
| 35 | 8000 |

legendTitle: This is a title
yAxisOrigin: from zero
`;
const result = generateHtmlString(inputString);

if(result.metadata.isSucess === true){
    // Handle the data
    console.log(result.data)
} else {
    // Handle the errors
    console.log(result.errors)
}

Available options

You have the possiblity to modify the chart by adding options after the table. There should be one option per line and it should follow the following syntax: optionKey: value of this option.

customLocale

  • Type: see the list below
  • Default: en-GB

Translate in this locale the date on the xAxis when xAxisType=date.

Here is the list of locale available:

  • ar-EG: Arabic (Egypt)
  • ca-ES: Catalan (Spain)
  • cs-CZ: Czech (Czech Republic)
  • da-DK: Danish (Denmark)
  • de-CH: German (Switzerland)
  • de-DE: German (Germany)
  • en-CA: English (Canada)
  • en-GB: English (United Kingdom)
  • en-US: English (United States)
  • es-ES: Spanish (Spain)
  • es-MX: Spanish (Mexico)
  • fa-IR: Persian (Iran)
  • fi-FI: Finnish (Finland)
  • fr-CA: French (Canada)
  • fr-FR: French (France)
  • he-IL: Hebrew (Israel)
  • hr-HR: Croatian (Croatia)
  • hu-HU: Hungarian (Hungary)
  • it-IT: Italian (Italy)
  • ja-JP: Japanese (Japan)
  • ko-KR: Korean (South Korea)
  • mk-MK: Macedonian (Macedonia)
  • nb-NO: Norwegian Bokmål (Norway)
  • nl-NL: Dutch (Netherlands)
  • pl-PL: Polish (Poland)
  • pt-BR: Portuguese (Brazil)
  • ru-RU: Russian (Russia)
  • sv-SE: Swedish (Sweden)
  • tr-TR: Turkish (Turkey)
  • uk-UA: Ukrainian (Ukraine)
  • zh-CN: Chinese (China)
  • zh-TW: Chinese (Taiwan)

Example where we enforce Hungarian language:

year        | apple | pear
----------- | ----- | -----
2019        | 2     | 3
2020        | 4     | 6

xAxisType: date
customLocale: hu-HU

legendOrientation

  • Type: vertical or horizontal
  • Default: horizontal

legendTitle

  • Type: any string
  • Default: none

xAxisType

  • Type: number or date or category
  • Default: autodetected

It supports 3 types of data:

  • number: numerical value as a continuous range
  • date: date value as a continuous range
  • category: string value as a discrete range

Example where we enforce a date type with the normal syntax:

year        | apple | pear
----------- | ----- | -----
2019        | 2     | 3
2020        | 4     | 6

xAxisType: date

Note that you can also pass this option by providing it in square bracket [] in the first cell of the table. Example where we enforce a date type with the square bracket [] syntax:

year [date] | apple | pear
----------- | ----- | -----
2019        | 2     | 3
2020        | 4     | 6

xAxisFormat

yAxisFormat

xAxisNbOfTicks

  • Type: positive number
  • Default: autodetected

yAxisNbOfTicks

  • Type: positive number
  • Default: autodetected

xAxisOrigin

  • Type: from zero or from data boundaries
  • Default: from data boundaries

Note: This option is ignored for date and category type x-axis.

yAxisOrigin

  • Type: from zero or from data boundaries
  • Default: from data boundaries

Units

The unit for the x-axis is the full string of the first cell of the header. The units for the y-axis are the string in parentheses () of each subsequent cells of the header.

Comments

Any string surrounded by <!-- and --> will be ignored by the plugin.

Example of a table with comments:

year  <!--this is a comment -->      | apple | pear
-----------------------------------  | ----- | -----
2019                                 | 2     | 3 <!-- another comment --> 
2020                                 | 4     | 6