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

cute-chat

v0.1.0

Published

萌聊(cute-chat)本地 GUI 启动器:一键启动 / 数据迁移 / 环境检查。

Readme

@cute-chat/cli

@cute-chat/cli 是萌聊(Cute Chat)的本地启动器。安装后会在本机启动完整 Web GUI,并把数据保存在本地 SQLite 数据库中。

安装

要求:

  • Node.js 20 或更高版本

全局安装:

pnpm add -g @cute-chat/cli

或:

npm install -g @cute-chat/cli

一次性运行:

npx @cute-chat/cli start

启动

cute-chat start

默认会启动本地服务并自动打开浏览器。默认地址通常是:

http://127.0.0.1:3000

如果端口被占用,CLI 会自动切换到下一个可用端口。

常用命令

cute-chat start
cute-chat start --port 3213
cute-chat start --no-open
cute-chat doctor
cute-chat migrate --from /path/to/source.db

说明:

  • cute-chat start: 启动 GUI
  • cute-chat start --port 3213: 指定首选端口
  • cute-chat start --no-open: 启动但不自动打开浏览器
  • cute-chat doctor: 检查 Node、数据目录、数据库和运行时状态
  • cute-chat migrate --from /path/to/source.db: 把已有 SQLite 数据迁移到当前用户目录

数据目录

默认数据目录:

~/.cute-chat/
  app.db
  backups/
  logs/
  cache/
  config.json

可以通过环境变量修改:

CUTE_CHAT_HOME=/custom/path cute-chat start

版本检查

CLI 启动前会检查 npm 上是否有更新版本。需要跳过时可以设置:

CUTE_CHAT_SKIP_UPDATE_CHECK=1 cute-chat start

模型配置

启动 GUI 后,你可以在成员配置里分别填写:

  • API Base URL
  • Model
  • API Key
  • 角色设定和回复参数

接口按 OpenAI-compatible Chat Completions 方式调用。

项目地址