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

raychart

v0.1.2

Published

RayChart - A 3D chart library based on Vue 3 and Three.js. 简单、易用、有趣的Vue 3D图表库,专注于3D数据可视化。

Downloads

446

Readme

RayChart

简单、易用、有趣的 Vue 3D 图表库,基于 Vue 3 和 Three.js。

✨ 特性

  • 📊 丰富的图表类型:柱状图、折线图、饼图、散点图、雷达图、水球图、3D 地图
  • 🎨 高度可定制:灵活的配置项,支持自定义样式、颜色和交互
  • 🚀 Vue 3 原生:使用 Vue 3 Composition API 构建
  • 📦 TypeScript:完整的类型定义,提供更好的开发体验
  • 性能优化:智能材质分级、按需渲染、对象池优化
  • 🎯 专业光照:四点光照系统,ACES 色调映射

📦 安装

npm install raychart

🚀 快速开始

全局注册

import { createApp } from 'vue'
import App from './App.vue'
import RayChart from 'raychart'
import 'raychart/dist/raychart.css'

const app = createApp(App)
app.use(RayChart)
app.mount('#app')

按需引入

<script setup lang="ts">
import { RayBar } from 'raychart'
import 'raychart/dist/raychart.css'

const option = {
  series: [{
    type: 'bar',
    data: [120, 200, 150, 80, 70, 110, 130]
  }]
}
</script>

<template>
  <div style="height: 500px">
    <RayBar :option="option" />
  </div>
</template>

📊 图表类型

  • RayBar - 3D 柱状图
  • RayLine - 3D 折线图
  • RayPie - 3D 饼图
  • RayScatter3D - 3D 散点图
  • RayRadar - 3D 雷达图
  • RayLiquid - 3D 水球图
  • RayMap3D - 3D 地图

📚 文档

完整文档请访问:https://docs.raychart.cn

🛠️ 开发

# 安装依赖
npm install

# 开发模式
npm run dev

# 构建
npm run build

# 文档开发
npm run docs:dev

# 文档构建
npm run docs:build

📄 许可证

MIT License

Copyright (c) 2024-2026 RayChart Team