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

@instantkom/cli

v3.150.0

Published

instantKOM CLI (ikm)

Readme

@instantkom/cli (ikm)

The instantKOM command-line interface. Built on oclif v4. Ships the ikm binary used to drive the instantKOM REST API from terminals, scripts, and CI pipelines.

This workspace is part of the instantKOM monorepo. The CLI covers authentication, configuration, channels, contacts, messages, broadcasts, chats, tickets, exports, templates, bots, flows, webhooks, shell completion, update handling, packaging, and Docker distribution.

Documentation

  • Generated command help: docs/commands/
  • Frontend help sync: npm run --workspace services/cli docs:frontend
  • Automation cookbook: cookbook/
  • Launch drafts: launch/

Build

npm run --workspace services/cli build

Run

./services/cli/bin/run.js --help
./services/cli/bin/run.js --version
./services/cli/bin/run.js whoami

Quality Gates

npm run --workspace services/cli type-check
npm run --workspace services/cli check:all
npm run --workspace services/cli check:command-coverage
npm run --workspace services/cli test:unit

Live Smoke Test

The live smoke test runs the built ikm binary against a real instantKOM API and validates the token lifecycle plus core read/write commands.

cd services/cli
IKM_API_URL=http://localhost:3002 \
IKM_API_KEY=<admin-or-full-api-key> \
IKM_CLI_TEST_CHANNEL_ID=505 \
IKM_CLI_TEST_CONTACT_CHANNEL_ID=766 \
npm run test:live

IKM_CLI_TEST_CHANNEL_ID is used for read checks. IKM_CLI_TEST_CONTACT_CHANNEL_ID is used for creating and deleting one temporary contact.

Live Security Test

The cross-account security test requires two isolated test accounts. It creates a contact with account B, verifies account A cannot read or delete it, and then removes it with account B.

cd services/cli
IKM_API_URL=http://localhost:3002 \
IKM_CLI_SECURITY_ACCOUNT_A_KEY=<account-a-api-key> \
IKM_CLI_SECURITY_ACCOUNT_B_KEY=<account-b-api-key> \
IKM_CLI_SECURITY_ACCOUNT_B_CHANNEL_ID=<account-b-channel-id> \
npm run test:security:live