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

@ys7zts/karin-plugin-nekostatus

v1.4.13

Published

基于Karin编写的服务器状态

Readme

NekoStatus

GitHub Karin Version MIT

一个为 Karin 机器人框架设计的系统状态监控插件,提供精美的卡片式 UI 展示服务器与机器人的运行状态。

特性

  • 系统监控 - 实时展示 CPU、内存、磁盘、网络、进程等服务器状态
  • 机器人状态 - 显示适配器信息、插件数量、消息统计、好友/群组数量
  • 精美 UI - 基于 React 渲染的卡片式状态图,简洁美观
  • 命令灵活 - 支持自定义命令前缀,适应不同使用习惯
  • 性能优先 - 精简的信息使用默认命令,详细扩展信息通过 全部 参数按需获取

快速开始

安装

pnpm add @ys7zts/karin-plugin-nekostatus -w

命令

| 命令 | 说明 | | --- | --- | | #猫猫状态 | 显示精简状态信息 | | #猫猫状态全部 | 显示完整状态信息(含进程、磁盘、网络详情) | | #(自定义前缀)状态 | 使用自定义前缀触发 |

配置

插件配置文件位于 @karinjs/@ys7zts/karin-plugin-nekostatus/config/config.json

{
  "defStatus": false,
  "prefix": ["猫猫", "neko"],
  "processSort": "mem"
}

| 配置项 | 类型 | 默认值 | 说明 | | --- | --- | --- | --- | | defStatus | boolean | false | 是否启用默认状态命令 | | prefix | string[] | ["猫猫", "neko"] | 自定义命令前缀 | | processSort | 'mem' \| 'cpu' | 'mem' | 进程列表排序方式 |

项目结构

packages/
├── core/                    # Karin 插件主体
│   └── src/
│       ├── index.ts         # 插件入口
│       ├── apps/            # 命令处理器
│       ├── core/            # 核心模块
│       ├── modules/         # 系统信息采集模块
│       └── utils/           # 工具函数
└── template/                # React UI 模板
    └── src/
        ├── components/      # UI 组件
        └── styles/          # 样式文件

开发

# 安装依赖
pnpm install

# 构建所有包
pnpm build

# 开发插件
pnpm dev

# 开发 UI 模板
pnpm dev:ui

相关项目

支持

许可证

MIT