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

openbanjo

v0.2.0

Published

Interactive workspace desktop client for Codex and Claude coding sessions.

Downloads

21

Readme

OpenBanjo

OpenBanjo is a Tauri desktop app that keeps your local projects, AI coding CLIs, terminal sessions, and assistant side panels in one compact workspace. It is built for developers who already use tools like Codex, Claude Code, ChatGPT, Claude, and local editors, and want a focused shell around their project flow.

Highlights

  • Open local project folders and keep recent workspaces close.
  • Favorite projects and switch between open workspaces from a compact sidebar.
  • Start isolated Codex or Claude CLI sessions inside the active workspace.
  • Keep multiple AI sessions open as tabs, with per-session terminal state.
  • Use an xterm-powered terminal that preserves viewport containment and focus.
  • Preview file changes made during each session.
  • Open ChatGPT or Claude in a docked side panel.
  • Detect Git branch, latest commit details, and common project stacks.
  • Switch to existing Git branches or create a new branch from the app.
  • Launch the current workspace in VS Code, Cursor, Antigravity, Windsurf, or Zed when their CLIs are available in PATH.
  • Check cached Codex and Claude usage status from isolated CLI calls.

Quick Start

Requirements

  • Node.js and npm.
  • Linux x64 for the npm-installed AppImage.
  • Git for workspace metadata and branch actions.
  • Optional: codex and claude CLIs in PATH to enable AI session launchers.
  • Optional: editor CLIs such as code, cursor, antigravity, windsurf, or zed in PATH.

Install from npm

npm install -g openbanjo
openbanjo

The npm package downloads the prebuilt Linux x64 AppImage from GitHub Releases during install. Rust, Cargo, and the Tauri CLI are only required for local development or release builds.

Run from source

Source development requires Node.js, npm, Rust/Cargo, and the Tauri 2 system dependencies for your operating system.

git clone https://github.com/ViniciusJBSilva/openbanjo.git
cd openbanjo
npm install
npm run tauri dev

npm run tauri dev starts the Vite frontend and opens the Tauri desktop app.

Development

Run the frontend only:

npm run dev

Build the frontend:

npm run build

Run ESLint:

npm run lint

Check the Rust backend:

cargo check --manifest-path src-tauri/Cargo.toml

Create a packaged desktop build:

npm run tauri build

Check the npm package contents before publishing:

npm run pack:check

Publish the package:

git tag v0.2.0
git push origin v0.2.0
npm publish --access public

Project Structure

  • src/ contains the React app, feature modules, shared UI, and i18n resources.
  • src/features/workspaces/ manages recent projects, favorites, sidebar state, directory selection, editor launching, and Git branch actions.
  • src/features/project/ owns the active workspace shell, topbar, session tabs, and assistant panel placement.
  • src/features/terminal/ owns PTY sessions, xterm rendering, CLI status, terminal focus, resize behavior, follow-output state, and change previews.
  • src/features/chatgpt/ owns the ChatGPT and Claude side panel integration.
  • src/features/usage/ shows cached Codex and Claude usage details.
  • src-tauri/src/ contains the Rust command handlers, PTY/session lifecycle, workspace persistence, assistant webview windows, and shared IPC models.
  • public/ stores public frontend assets, including the OpenBanjo README image.

Generated outputs such as dist/ and src-tauri/target/ should not be edited manually.

Status

OpenBanjo is early-stage, local-first desktop software. It does not bundle Codex, Claude, ChatGPT, Claude.ai, or external editors. Install and authenticate those tools separately, then make sure their command line launchers are available to the app through PATH.

Contributing

Before opening a pull request, run:

npm run lint
npm run build
cargo check --manifest-path src-tauri/Cargo.toml

For UI, workspace, terminal, or assistant panel changes, also verify the flow manually in npm run tauri dev.