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

webcode-launcher

v1.0.3

Published

webcode desktop launcher - NW.js-based GUI for managing webcode Docker containers

Downloads

405

Readme

webcode 启动器(NW.js)

面向普通用户的桌面启动器。用户只需安装 Docker Desktop 和该启动器,无需克隆仓库或手动配置。

功能

  • 安装向导:首次运行时检测 Docker 环境 → 配置参数 → 一键启动容器
  • 多标签工作区:IDE (Theia)、看板 (Vibe Kanban)、桌面 (noVNC)、AI (OpenClaw)
  • 自动登录:本地代理注入 Basic Auth,iframe 无缝嵌入各服务
  • 配置管理:保存在本地应用数据目录,持久化配置
  • 状态监控:实时轮询容器状态,流式日志查看

使用方式

方式 1: npx 直接运行(推荐)

无需安装,直接运行:

npx webcode-launcher

方式 2: 全局安装

npm install -g webcode-launcher
webcode-launcher

方式 3: 本地开发

cd launcher
npm install
npx nw .

架构

NW.js 进程
├── index.html        主界面(向导 / 工作区)
├── src/config.js     配置读写(nw.App.dataPath/config.json)
└── src/app.js        Docker 管理 + 本地代理服务器

本地代理(http-proxy)
├── :14001 → :23000   Theia(注入 Basic Auth)
├── :14002 → :25173   Vibe Kanban(注入 Basic Auth)
└── :14003 → :28789   OpenClaw(注入 Basic Auth)

noVNC 直连(无需代理)
└── :26080            ?autoconnect=true&password=VNC_PASS

配置文件位置

| 平台 | 路径 | |------|------| | macOS | ~/Library/Application Support/webcode-launcher/config.json | | Windows | %APPDATA%\webcode-launcher\config.json | | Linux | ~/.config/webcode-launcher/config.json |

docker-compose.yml 存储在同目录的 webcode/ 子目录中。

端口说明

| 代理端口 | 目标端口 | 服务 | |----------|----------|------| | 14001 | 23000 | Theia IDE | | 14002 | 25173 | Vibe Kanban | | 14003 | 28789 | OpenClaw | | — | 26080 | noVNC(直连) |