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

@skxv/oct-daemon

v0.1.6

Published

Headless host daemon for Open Collaboration Tools

Readme

oct-daemon banner

Headless host daemon for Open Collaboration Tools.

It creates an OCT room, prints the generated room code, and exposes a local workspace folder so normal VS Code/OpenVSCode clients with the Open Collaboration Tools extension can join.

Install

pnpm install
pnpm build

Run

Host a local folder as an OCT room:

npx @skxv/oct-daemon --workspace /path/to/workspace

With a custom OCT server:

npx @skxv/oct-daemon --workspace /path/to/workspace --server https://your-oct-server.example/

Run in the background:

npx @skxv/oct-daemon --workspace /path/to/workspace --detached

The daemon prints:

ROOM_ID=<generated-code>
JOIN_URI=<server-url>#<generated-code>

Detached mode prints:

DETACHED_PID=<pid>
LOG_FILE=<workspace>/.opencollabtools-daemon/oct-daemon.log

The room details are written to the log file.

Enter the generated room code in a physical VS Code instance using the Open Collaboration Tools extension.

Sync a Joined Room

Join an existing OCT room and keep a real local folder synchronized:

npx @skxv/oct-daemon sync --room <room-code> --workspace /path/to/local-mirror

With a custom OCT server:

npx @skxv/oct-daemon sync --room <room-code> --workspace /path/to/local-mirror --server https://your-oct-server.example/

The sync command downloads the remote workspace into the local mirror, watches it continuously, and pushes local file creates, edits, and deletes back to the room host. Incoming changes from collaborators are written back to the same local folder.

Options

Host options:

--workspace <path>          Folder to share
--server <url>              OCT server URL, defaults to https://api.open-collab.tools/
--auth-token <token>        Reusable OCT login token
--auth-token-file <path>    Token file, defaults to <workspace>/.opencollabtools-daemon/auth-token
--readonly                  Reject write operations from guests
--exclude <glob>            Repeatable exclude glob
--name <name>               Workspace display name, defaults to folder basename
-d, --detached              Run in the background
--detatched                 Alias for --detached

Sync options:

sync --room <code>          Room code to join
sync --workspace <path>     Local folder to synchronize
sync --server <url>         OCT server URL, defaults to https://api.open-collab.tools/
sync --auth-token <token>   Reusable OCT login token
sync --auth-token-file <path>
sync --exclude <glob>       Repeatable exclude glob

Default excludes: **/.env, .git/**, node_modules/**, .opencollabtools-daemon/**, .opencollabtools-sync/**.

The upstream OCT server generates room IDs. A caller-chosen --code random-code is not supported in v1.