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

@zhin.js/adapter-sandbox

v1.0.38

Published

Zhin.js adapter for local testing and development

Readme

@zhin.js/adapter-sandbox

Zhin.js Sandbox 适配器,基于 WebSocket 的本地测试适配器,配合 Web 控制台提供浏览器端聊天窗口进行调试。

功能特性

  • 基于 WebSocket 实时通信
  • 浏览器端 React 聊天 UI
  • 支持多客户端同时连接
  • 无需第三方平台账号,即开即用
  • 适合本地开发和插件调试

安装

pnpm add @zhin.js/adapter-sandbox

依赖

Sandbox 适配器需要以下服务插件:

  • @zhin.js/http — HTTP 服务(提供 Router 和 WebSocket)
  • @zhin.js/console — Web 控制台(提供前端 UI)
  • @zhin.js/client — 控制台客户端框架

配置

# zhin.config.yml
bots:
  - context: sandbox
    name: sandbox-bot

plugins:
  - adapter-sandbox
  - http
  - console

或使用 TypeScript 配置:

import { defineConfig } from 'zhin.js'

export default defineConfig({
  bots: [
    {
      context: 'sandbox',
      name: 'sandbox-bot',
    }
  ],
  plugins: [
    'adapter-sandbox',
    'http',
    'console',
  ]
})

使用方式

  1. 启动机器人:pnpm dev
  2. 打开浏览器访问 Web 控制台(默认 http://localhost:8086
  3. 在控制台的 Sandbox 聊天窗口中发送消息进行测试

每个浏览器客户端通过 WebSocket 连接后会自动创建一个 Sandbox Bot 实例,消息通过 JSON 格式在 WebSocket 上传输。

消息格式

Sandbox 使用 JSON 消息格式:

{
  "type": "message",
  "id": "msg-001",
  "content": "你好",
  "timestamp": 1700000000000
}

适用场景

  • 本地开发调试插件逻辑
  • 测试命令和 AI 工具调用
  • 不依赖外部平台的功能验证

许可证

MIT License