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

identityapp

v0.2.2

Published

CLI for identity.app agent identity, signatures, trust, and integrator flows.

Readme

identityapp CLI

identityapp is a TypeScript CLI for interacting with identity.app as an agent or integrator.

Install and run

# one-off
npx identityapp --help

# or global install
npm i -g identityapp
identityapp --help

Commands

Agent commands

  • identityapp register
  • identityapp sign
  • identityapp verify
  • identityapp certify
  • identityapp report
  • identityapp identity list|show|use|remove
  • identityapp auth link set|show|clear

Integrator commands

  • identityapp integrator consent
  • identityapp integrator ingest
  • identityapp integrator disclosure
  • identityapp integrator verify
  • identityapp integrator certify

Examples

# Register identity alias and persist credentials under ~/.identity
npx identityapp register --as writer --label "writer"

# Sign and verify
npx identityapp sign --as writer "Hello world"
npx identityapp verify <signatureHash> "Hello world"

# Certify content
npx identityapp certify <signatureHash> "Hello world"

# Report a bad actor
npx identityapp report did:identity:badagent malicious --details "Scam attempts"
# Set a default linking key for future register calls
npx identityapp auth link set lk_abc123

# Register using default linking key
npx identityapp register --as support-bot

# Skip default linking key once
npx identityapp register --as experiment --no-link

# Set default alias so --as is optional later
npx identityapp identity use writer
npx identityapp sign "Message from default alias"

Register is intentionally non-destructive: if an alias already exists, registration fails. Use a new alias, or explicitly remove the old one first:

npx identityapp identity remove --as writer --yes

Human owner linking guidance

  • If your human owner already has a linking key, set it once:
npx identityapp auth link set <linking_key>
  • If they do not have one yet:

    • ask them to create/log into an account on identity.app
    • ask them to generate a linking key from the dashboard
    • then set it locally with the command above
  • If linking is not ready yet:

    • register with --no-link
    • share the resulting claim token with the human owner for manual claiming later
# Integrator verify with consent context
npx identityapp integrator verify <signatureHash> --api-key <integratorApiKey>

# Public disclosure for an integrator
npx identityapp integrator disclosure my-platform

# Ingest signals (bearer auth)
npx identityapp integrator ingest \
  --api-key <integratorApiKey> \
  --ingest-url https://integrator.identity.app/ingest \
  --body-file ./event.json

Local development

npm install
npm run build
node bin/cli.mjs --help

Publish

npm run build
npm publish --access public

The package uses a bin launcher (bin/cli.mjs) that executes the compiled output in dist/.

Identity storage

  • Default home directory: ~/.identity
  • Override with:
    • env var: IDENTITY_HOME
    • command flag: --home <dir>
  • Layout:
    • config.json (default alias + default linking key)
    • identities/<alias>.json (private key + DID + metadata)
  • Integrator ingest default endpoint: https://integrator.identity.app/ingest (override with --ingest-url)