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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ebiz-charts-library

v0.0.1

Published

<p align="center"> <a href="https://opentiny.design/tiny-vue" target="_blank" rel="noopener noreferrer"> <img alt="OpenTiny Logo" src="logo.svg" height="100" style="max-width:100%;"> </a> </p>

Downloads

8

Readme

English | 简体中文

🌈 特性:

  • 📦 包含40多个简洁、易用的图表组件
  • 🖖 一套代码同时支持Vue、Angular、React框架
  • 🎨 集成多套主题规范,支持主题定制
  • 💡 集成自适应、性能提升、无障碍能力、刻度优化等特性

🛠️ 如何使用

1. 安装

  1. 环境准备,首先确认安装了 Node.js,并确保 Node.js 版本是 10.13 或以上。使用 node -v 命令查看 node 版本
  2. 查看组件库当前的版本 npm show @opentiny/huicharts
  3. 使用 npm 安装组件库最新版本: npm install @opentiny/huicharts@latest --save

2. 引入和使用

// 引用图表库
import HuiCharts from '@opentiny/huicharts';

// 创建图表容器
<div id="main" style="width: 600px;height:400px;"></div>

// 创建图表实例
let chartIns = new HuiCharts();

// 初始化图表容器
let chartContainerDom = document.getElementById('main');
chartIns.init(chartContainerDom);

// 填入图表配置项
let chartOption = {...};
// 指定使用图表类型:LineChart、AreaChart、BarChart、PieChart、GaugeChart、RadarChart、ProcessChart、BubbleChart等
// 图表类型的英文名称可以在文档左侧菜单栏看到
let chartType = 'LineChart';
chartIns.setSimpleOption(chartType, chartOption);

// 开始渲染
chartIns.render();

🖥️ 本地开发

git clone [email protected]:opentiny/tiny-charts.git
cd tiny-charts
npm i

# 启动项目
npm run dev

打开浏览器访问:http://localhost:8080/

参与贡献

如果你对我们的开源项目感兴趣,欢迎加入我们!🎉

参与贡献之前请先阅读贡献指南

  • 添加官方小助手微信 opentiny-official,加入技术交流群
  • 加入邮件列表 [email protected]

开源协议

MIT