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

utem-cli

v0.1.1

Published

npm wrapper for the UTEM CLI (utem) — control plane for the UTEM security platform. Installs the official PyPI package into an isolated environment.

Readme

utem-cli

npm distribution channel for the UTEM CLI (utem) — the control-plane command-line interface for the UTEM security platform.

# one-off
npx utem-cli --help

# global install
npm i -g utem-cli
utem --help

What this package is (and isn't)

The UTEM CLI itself is a pure-Python application published on PyPI as utem (the wheel is utem-<version>-py3-none-any.whl — architecture independent). It is also distributed via Homebrew (Innavoto/utem-homebrew-tap).

This npm package is a thin wrapper, not a reimplementation. On install it:

  1. Locates a Python 3.10+ interpreter on your PATH.
  2. Creates an isolated virtualenv inside the installed package (.venv/).
  3. pip installs the pinned utem release from PyPI into that venv.

The utem command shipped by this package then execs the CLI inside that venv, forwarding all arguments, stdio and exit codes. Your global Python environment is never modified.

Requirement: Python 3.10+

Because the CLI is a Python program, this wrapper requires Python 3.10 or newer on your PATH (the same requirement the Homebrew formula declares via depends_on "python3"). If Python is missing, install fails soft with an actionable message and the CLI is provisioned lazily on first utem run.

On Debian/Ubuntu you may also need python3-venv (apt install python3-venv).

Design tradeoff

Two common patterns exist for shipping a CLI on npm:

| Approach | Used here? | Why / why not | |---|---|---| | Prebuilt-binary downloader (esbuild style: postinstall fetches a per-OS/arch native binary from GitHub Releases, checksum-verified) | No | The UTEM CLI has no native binary and no per-platform GitHub release assets — it is pure Python. There is nothing arch-specific to download. | | optionalDependencies per-platform packages | No | Same reason — there are no platform-specific artifacts to split into sub-packages. | | PyPI-install shim (provision the real package into an isolated venv) | Yes | The canonical artifact is a pure-Python wheel already on PyPI; installing it into an isolated venv is the simplest correct wrapper and requires no new binary build pipeline. |

If the CLI is later shipped as self-contained native binaries (e.g. via PyInstaller) attached to versioned GitHub Releases, this wrapper can be switched to the checksum-verified downloader model without changing its public interface.

Environment variables

| Variable | Effect | |---|---| | UTEM_SKIP_POSTINSTALL=1 | Skip provisioning during npm install (CI / air-gapped). The CLI is provisioned lazily on first run. |

CLI auth (UTEM_API_URL, UTEM_TOKEN, UTEM_TENANT_ID) is documented in the main CLI README.

Versioning

This wrapper is versioned independently of the CLI it installs. The wrapper version is package.json's version; the CLI version it pins from PyPI is PINNED_CLI_VERSION in lib/platform.js (currently 0.1.0). Packaging-only fixes can ship a new wrapper release without a new CLI release.

License

Proprietary — © Innavoto India Pvt Ltd. See the main repository.