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

positronia

v0.1.1

Published

POSITRONIA CLI — run EU-sovereign GDPR + AI Act compliance audits of third-party SaaS from your terminal (EuTrustedIA API v1 client).

Readme

positronia

EU-sovereign GDPR + AI Act compliance audits of third-party SaaS, from your terminal.

positronia is the official CLI for the EuTrustedIA public API v1 (POSITRONIA audit engine). Point it at a SaaS you use or plan to adopt — it returns a private, sealed compliance report (GDPR + AI Act), scored deterministically, with a cryptographically chained audit trail.

  • Runs against your EuTrustedIA plan (same quotas as the web app and MCP server — one counter).
  • Reports are private to your account. Nothing is published.
  • The report is generated server-side on EU-sovereign infrastructure; LLM-aided recommendations carry the mandatory AI Act Article 50 marking.

Install

npx positronia --help        # no install
npm i -g positronia          # or pnpm add -g / bun add -g

Requires Node ≥ 18.17.

Authentication

Create an API key at app.eutrustedia.eu/api-keys (any active plan), then:

export ETIA_API_KEY=etia_...

The key is read from the environment only — it is never accepted as a CLI argument (shell history and process lists leak).

Usage

# Audit a SaaS (counts against your plan quota; cache-first per domain)
positronia audit https://some-saas.example \
  --use-case "CRM storing customer emails" \
  --position "data controller" \
  --sensitivity professional

# List your audits
positronia list

# Full detail of one audit / dump the markdown report
positronia get <id>
positronia get <id> --md > report.md

Output is a human table on an interactive terminal and JSON when piped (or with --json) — script- and agent-friendly by default.

| Flag | Description | |---|---| | --use-case <text> | How you use this SaaS (required for audit) | | --position <text> | Your role towards the data (required for audit) | | --sensitivity <l> | public · professional · rgpd_art9 · oiv (default professional) | | --regions <list> | Comma-separated inference regions (declarative) | | --force | Re-audit a domain you already audited | | --md | (get) dump the raw markdown report | | --json | Force JSON output |

Exit codes

0 success · 1 API/network error (the code field is printed, e.g. QUOTA_EXCEEDED, RATE_LIMITED) · 2 usage or configuration error.

Zero runtime dependencies

This CLI uses only Node built-ins (fetch, util.parseArgs). It is a thin wrapper over the documented public API — no database access, no telemetry, nothing phones home except the API calls you ask for.

Related surfaces

  • REST API v1https://app.eutrustedia.eu/api/v1/… (OpenAPI)
  • MCP serverclaude mcp add --transport http positronia https://app.eutrustedia.eu/api/mcp --header "Authorization: Bearer etia_…"

Made in the EU 🇪🇺 by PiaXelthe compliance scanner that never sees your source code.