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

sidemesh

v0.2.1

Published

Fleet-first coding-agent session node and Flutter client.

Readme

Sidemesh

Sidemesh is a trusted-network control plane for coding-agent sessions. Run the daemon on your development machine, connect from the Flutter app, and manage sessions, approvals, files, git, terminals, port forwards, and browser previews from mobile or desktop.

This repository contains:

  • src/: the Node.js daemon, CLI, provider adapters, and host-side APIs
  • apps/mobile/: the Flutter client
  • web/: the landing site deployed separately

Providers

Sidemesh currently supports these provider adapters:

| Provider | Status | Notes | | --- | --- | --- | | Codex | primary | default setup option | | Pi | supported | public setup option | | GitHub Copilot CLI | dev | available through sidemesh setup --dev | | Fake test provider | dev | deterministic contract-testing adapter |

Run sidemesh setup --dev to expose the development-only providers in the setup wizard.

Quick start

Requirements:

  • Node.js >= 22.5.0
  • A user-managed Node install such as Homebrew, nvm, or Volta if you want npm install -g to work without sudo
  • Flutter, if you want to run the app locally
  • A trusted network such as Tailscale or a private LAN

Install the default Codex path:

npm install -g sidemesh @openai/codex

sidemesh up

From the repo instead, for development:

git clone https://github.com/mukhtharcm/sidemesh.git
cd sidemesh
npm install
npm run build
npm link

What that command does:

  1. Persists a default config to ~/.sidemesh/config.json if you do not have one yet.
  2. Auto-detects ready providers on your machine and defaults to Codex when it is ready.
  3. Checks the selected provider enough to catch obvious command problems before launch.
  4. Launches the daemon in the background.
  5. Prints the host URL, token, and QR code for the app.

Use sidemesh setup when you want to customize providers, host features, or advanced settings before starting the daemon.

For foreground development instead of a managed background daemon:

npm run setup
npm run daemon

Connecting the app

Open the app, then either use the QR code printed by sidemesh up, run sidemesh pair, or add the host manually with:

  • a label
  • a base URL such as http://100.x.x.x:8787 or http://192.168.x.x:8787
  • the shared bearer token

To run the Flutter app locally:

cd apps/mobile
flutter pub get
flutter run --flavor dev -t lib/main.dart

Platform-specific app notes live in apps/mobile/README.md.

Common commands

| Command | Purpose | | --- | --- | | sidemesh up | create a default config if needed, start the daemon, and print pairing details | | sidemesh setup | customize the persisted config | | sidemesh doctor | run startup and provider diagnostics | | sidemesh status | show resolved config and local daemon health | | sidemesh pair | print host details and QR code | | sidemesh daemon | run the daemon in the foreground | | sidemesh start | run the daemon in the background | | sidemesh stop | stop the managed daemon | | sidemesh restart --yes | restart without prompting | | sidemesh service install | install the OS service wrapper | | sidemesh service status | show systemd or launchd status |

On Linux, sidemesh service install uses systemd and typically needs sudo. On macOS, it installs a user LaunchAgent instead.

Development

Server checks:

npm run typecheck
npm run test:server
npm run build

Flutter checks:

cd apps/mobile
flutter test
flutter analyze

Useful repo scripts:

npm run mobile:get
npm run test
npm run secret:scan

Security model

Sidemesh is for trusted networks only. Do not expose the daemon directly to the public internet.

Current auth is a shared bearer token:

  • all /api/* HTTP routes and websocket endpoints require Authorization: Bearer <token>
  • GET /healthz is intentionally unauthenticated for local health checks
  • per-device token revocation is not implemented yet

Host-side features such as integrated terminals, port forwarding, and browser preview should stay disabled unless you intentionally need them.

More documentation

  • docs/getting-started.md
  • docs/provider-adapter-contract.md
  • CONTRIBUTING.md
  • docs/release-playbook.md