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

@nogataka/opencode-viewer

v0.0.3

Published

**English** | [日本語](./README.ja.md)

Readme

English | 日本語

Opencode Viewer

Opencode Viewer is a full-featured web client for Opencode projects. Start new conversations, resume active tasks, and review historical turns from your browser with real-time synchronization to ~/.local/share/opencode/storage/ (sessions, messages, and parts).

Note: This project adapts codex-viewer for the Opencode runtime and storage layout.

Projects view

Session list

Session detail

Features

Project Explorer

  • Search projects by name or path, sort by last update / name / message count, and toggle between grid and table layouts.
  • Surface message counts and the latest activity based on Opencode session metadata.

Session Management

  • Resume or inspect conversations with syntax-highlighted logs, tool calls, and SSE-driven updates.
  • Copy the sessionId from the header, abort or resume tasks, and follow streaming output without page refreshes.
  • Assistant responses now appear immediately after resume requests thanks to watcher coverage across session, message, and part folders.

Automation & Integrations

  • CLI opens the default browser once the server becomes reachable (macOS, Linux, Windows). Disable via CC_VIEWER_NO_AUTO_OPEN=1, NO_AUTO_OPEN=1, or NO_AUTO_BROWSER=1.
  • File watcher monitors session, message, and part directories beneath ~/.local/share/opencode/storage/, emitting session_changed events for live UI refresh.

Quick Start

Run without installation:

PORT=3400 npx @nogataka/opencode-viewer@latest

Opencode Viewer starts the server (default port 3400) and opens http://localhost:3400 when ready. Export CC_VIEWER_NO_AUTO_OPEN=1 to skip auto-launch.

Install Globally

npm install -g @nogataka/opencode-viewer
opencode-viewer

From Source

git clone https://github.com/nogataka/opencode-viewer.git
cd opencode-viewer
pnpm install
pnpm build
pnpm start

Usage Guide

1. Projects Page

  • Filter: Narrow projects by workspace name or path via the search box.
  • Sort: Toggle Last Modified, Project Name, or Message Count sorting (ascending / descending).
  • Views: Switch between card view for quick actions and table view for compact navigation.

2. Sessions Page

  • Header Controls: Title reflects the first command; sessionId: badge offers copy-to-clipboard and displays the UUID when available.
  • Live Status: Running or paused tasks show status badges with Abort / Resume actions. The view auto-scrolls as new turns arrive.
  • Tooling: Diff viewer, command output panes, and reasoning/tool call sections keep the timeline in sync with on-disk JSON changes.

3. Real-time Sync

  • Session summaries derive timestamps from session/*.json, while the watcher relays updates from message/*.json and part/*.json so assistant messages and tool results appear instantly.
  • SSE broadcasts project_changed / session_changed events; clients invalidate React Query caches to refresh conversation data without polling.

Configuration

  • Port: PORT=8080 npx @nogataka/opencode-viewer@latest
  • Disable Auto Browser: CC_VIEWER_NO_AUTO_OPEN=1 (or NO_AUTO_OPEN=1, NO_AUTO_BROWSER=1).
  • Data Directory: Defaults to ~/.local/share/opencode/storage/ (session, message, part). Override via OPENCODE_STORAGE_ROOT if you keep Opencode data elsewhere.

Development Scripts

  • pnpm dev – Launch Next.js (Turbopack) + embedded Hono API on port 3400.
  • pnpm lint / pnpm fix – Lint and format with Biome 2.2.
  • pnpm typecheck – Run tsc --noEmit for strict types.
  • pnpm test – Execute Vitest suites.
  • pnpm build – Produce the standalone bundle and CLI entry in dist/.

Articles

Background and workflows:

License & Contributing

Licensed under MIT – see LICENSE. Contribution guidelines and architecture notes live in docs/dev.md.

Release Notes

  • dist/index.js は CLI (bin) のエントリーポイントです。削除・リネームすると npx @nogataka/opencode-viewer やグローバルインストールが動作しなくなるので注意してください。