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

ruanm-tool

v1.0.4

Published

RuanmTool 超级工具箱 - 一个功能强大的Windows系统工具箱

Readme

RuanmTool 超级工具箱

一个功能强大的Windows系统工具箱,集成了系统修复、Node.js项目创建、AI聊天助手等多种实用功能。

功能特性

  • 🔧 系统修复工具:系统文件检查、磁盘错误检查、DNS缓存清理
  • 🚀 Node.js项目快速创建:支持标准项目、Electron应用、仅配置文件项目
  • 🤖 AI聊天助手:集成AI对话功能
  • 🛠️ 开发工具集:Git初始化、常用工具安装、React/Vue项目创建
  • 📊 系统信息查看:完整的系统信息展示
  • 💬 精美弹窗功能:可在代码中直接调用的精美弹窗组件

安装

npm install -g ruanm-tool

使用方法

安装后,可以通过以下命令启动工具箱:

ruanm-tool

或者使用npx运行:

npx ruanm-tool

弹窗功能使用

RuanmTool v1.0.3新增了强大的弹窗功能,可在代码中直接调用:

// 引入弹窗模块
const { Popup, InfoPopup, SuccessPopup, WarningPopup, ErrorPopup, ConfirmPopup } = require('ruanm-tool');

// 显示信息弹窗
InfoPopup('信息提示', '这是一条信息提示消息');

// 显示确认弹窗
ConfirmPopup('确认操作', '您确定要执行此操作吗?').then(confirmed => {
  if (confirmed) {
    console.log('用户确认了操作');
  }
});

// 显示自定义弹窗
Popup({
  title: '自定义弹窗',
  message: '这是一个自定义弹窗',
  buttons: ['取消', '确定', '了解更多'],
  type: 'question'
});

系统要求

  • Windows操作系统
  • Node.js 12.0或更高版本
  • npm包管理器

注意事项

为了获得完整功能,请以管理员身份运行此工具。某些系统级操作需要管理员权限才能正常执行。