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

@ibiz-template/devtool

v0.0.13

Published

IBiz系统可视化调试套件

Readme

@ibiz-template/devtool

IBiz系统可视化调试套件,集成开发态建模数据实时查看、运行时状态分析、组件交互调试能力,支持快速定位页面元素与数据模型映射关系,提升开发效率。

📂 项目结构

├── src
│   ├── components
│   │   ├── detail-info                                     详情信息组件                              
│   │   ├── global-toolbar                                  顶部工具栏组件
│   │   ├── index-page                                      工具壳组件
│   │   ├── index.ts
│   │   ├── object-viewer                                   拷贝组件
│   │   ├── user-config-edit                                用户配置组件
│   │   ├── view-list                                       视图列表组件
│   │   └── view-model-viewer                               视图模型组件
│   ├── controller
│   │   ├── center.controller.ts                            控制中心
│   │   └── dev-tool-config.ts                              开发工具配置文件
│   ├── index.ts
│   ├── interface
│   │   └── i-center-controller-state.ts                    控制器中心状态
│   └── style
│       └── index.scss                                      开发工具样式

📦 开发

  1. 安装依赖

进入@ibiz-template/devtool工作空间后,执行以下命令安装依赖:

pnpm i
  1. 运行项目

进入@ibiz-template/devtool工作空间后,执行以下命令启动开发环境:

pnpm dev
  1. 将@ibiz-template/devtool包链接到全局

等待开发环境启动完成后,将@ibiz-template/devtool包添加pnpm link到全局:

pnpm link --global
  1. 链接依赖项目

在依赖此包的项目工作空间中,安装依赖后执行以下命令link插件包

pnpm link --global "@ibiz-template/devtool"