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

haomo-magic-cube

v1.0.59

Published

This is the haomo-magic-cube from the haomoFE

Downloads

189

Readme

haomo-magic-cube

下载依赖

npm install

启动本地示例

npm run serve

打包示例文件

npm run build:dem

打包库

npm run build:lib

查找和修复文件

npm run lint

组件库

login

<HLogin
  platform="lucas" 
  :loginUrl="" 
  @success="success" 
  @error="error"
/>

props

| 参数 | 说明 | 类型 | - | - | - | | platform | 项目对应 code | String | loginUrl | 登录 URL 地址 | String

event

| 事件 | 说明 | 回调参数 | - | - | - success | 登录成功的回调 | 用户信息 error | 登录失败的回调 | 错误提示信息

2D 标注展示

<h-two-annotation 
  :is-title="true"
  is-move
  :is-enlarge="true"
  img-src="current.img_url"
  :config-list="configList"
  :lines='lines'
  bordColor='red'
  :fontSize='18'
  :edges='edges'
  edgesLineColor='red'
  linesLineColor='green'
  :lineWidth='5'
  :radius='10'
  :sizing="sizing"
/>

props

参数 | 说明 | 类型 | 默认值

  • | - | - | - isTitle | 是否展示标注对应的 title 信息 | Boolean lineWidth | 线条宽度 | Number | 2 radius | 车道线圆形半径 | Number | 5 bordColor | 线条颜色, 当标注没有自己的颜色的时候, 使用默认颜色 | String | '#7fff00' fontSize | 标题字体大小 | Number | 16 isMove | 是否可以拖拽图片 | Boolean isEnlarge | 是否可以缩放图片 | Boolean imgSrc | 图片链接 | String configList | 标注具体参数 | [{ bbox: [] }] bbox 里面包含标注对应坐标点 lines | 边缘线 | [{point: [] }] linesLineColor | 边缘线默认颜色 | String | 'green' edges | 车道线 | [{point: [] }] edgesLineColor | 车道线默认颜色 | String | 'red' sizing | 图片对应的大小 | {width: number, height: number}