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

acollab-cli

v0.1.1

Published

Unofficial command-line client for self-hosted ActiveCollab (API v1)

Downloads

32

Readme

acollab-cli

Unofficial command-line client for self-hosted ActiveCollab (API v1). Not affiliated with ActiveCollab / A51 doo. Built and verified against ActiveCollab 8.0.31.

Install

npm install -g acollab-cli

Or straight from GitHub, no npm registry needed:

npm install -g itsanla/acollab

Installing on a server without root

npm install -g writes to a system directory by default (e.g. /usr/lib/node_modules), which fails with EACCES if your user can't write there and you don't have sudo. Point npm's global prefix at a directory you own instead:

npm config set prefix ~/.npm-global
export PATH="$HOME/.npm-global/bin:$PATH"   # add this line to your shell rc file too
npm install -g acollab-cli

Usage

collab login https://your-activecollab-instance.example.com
# prompts for email + password, stores a session token in ~/.config/collab-cli/config.json

collab              # no arguments: shows this command list (same as --help)
collab tasks        # your My Work list, grouped by project, open tasks only
collab tasks --all  # include completed tasks
collab projects     # every project you can see
collab task <taskId>   # one task in full, with comments (project is resolved for you)
collab <taskId>         # shorthand for "collab task <taskId>"
collab activity     # recent notifications
collab whoami
collab logout

IDs come from the left column of collab tasks. collab task only looks up tasks that are in your own My Work list (open or completed); it can't look up arbitrary tasks you're not assigned to.

Requirements

  • Node.js 18+ (uses the built-in fetch)
  • A self-hosted ActiveCollab instance with API v1 enabled (this is the default)

How it authenticates

Uses ActiveCollab's own POST /api/v1/issue-token endpoint (username + password once, in exchange for a reusable token). The token is stored locally in ~/.config/collab-cli/config.json, never sent anywhere except your own server.

What's not implemented yet

Timesheet and Availability, two of the four tabs on the My Work page, aren't covered yet. Their API paths weren't confirmed working during initial testing. PRs welcome.

License

MIT