1、Highcharts 一款风格简约,让人舒服的图标库。
2、TCharts.js is a Lightweight and fast terminal ASCII charts for nodejs and browser.
npm i -S tcharts.js
const TCharts = require('tcharts.js');
const { Box } = TCharts
const box = new Box(60, 20); // width, height
box.setData([
{value:100, name:'A'},
{value:100, name:'B'},
{value:100, name:'C'},
{value:100, name:'Hello'},
]);
console.log(box.string());