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

miniui-components

v2.0.3

Published

miniui components

Downloads

214

Readme

MiniUI 类型库

概念

http://miniui.com 发布的MiniUI前端组件库非常适合于企业信息化类应用的开发。但该库是基于JAVAScript开发,没有相应的类型库,导致开发者使用极为不变,因此,我详细分析原代码,并实现了该库的全部类型定义。以方便开发者使用。

使用方法


    //引用miniui库
    import { mini } from "miniui-components"
    
    //miniui的分析
    mini.parse();

    //实例化组件变量
    const btn1 = mini.get("btn1") as mini.Button;
    const btn_start = mini.get("btn_start") as mini.Button;
    const btn_mode_signal = mini.get("radio_btn_signal") as mini.Button;
    const btn_mode_scan = mini.get("radio_btn_scan") as mini.Button;
    const btn_mode_bode = mini.get("radio_btn_bode") as mini.Button;

    //监听事件
    btn1.on("click", async e => {

    })

版权声明

这个库使用的MiniUI原码来源于其官方开放的测试原代码,并不能用于生产目的!如果需要在生产中使用,请联系MiniUI团队,在经过MiniUI团队的许可后,可与我联系获取正式版本.

联系方式

我的邮箱:[email protected]

联系电话:13120118297