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

@int3gra/cli

v1.1.0

Published

Developer tooling for int3gra integrations

Readme

@int3gra/cli

Developer tooling for int3gra integrations. Scaffold, validate, run, mock-test, and check connectivity — all from the command line.

Installation

npm install -g @int3gra/engine @int3gra/cli @int3gra/manager

Then, once per host, as root:

sudo integra setup

This provisions /opt/integra, integra's fixed home — see the root README's "Integra home" section. Every other command checks for it and fails immediately, with a clear message, if it's missing.

Commands

integra setup                                                # One-off host provisioning. Run once, as root.
integra init <path>                                          # Scaffold a new integration; <path>'s last segment becomes its id
integra duplicate <path> --id <source-id> --branch <name>    # Fork a new integration from another's pushed branch
integra validate --id <id> --branch <name>                   # Validate a pushed branch's integra.json and component files
integra run <process-id> --id <id> --branch <name>           # Execute a process for real, against a pushed branch
integra run <process-id> --id <id> --branch <name> --env <file>  # Run with a specific committed env file
integra test --id <id> --branch <name>                       # Mock-test a pushed branch using fixture files (no real calls)
integra ping --id <id> --branch <name>                       # Check connectivity via the no-op connection
integra ping --id <id> --branch <name> --con <id>[,<id>]      # Ping specific connection(s)
integra ping --id <id> --branch <name> --env <file>           # Ping with a specific committed env file

--id and --branch are mandatory on run, validate, ping, and test — there is no mode that operates on live/ directly, or on whatever happens to be checked out locally. Push your work into the integration's live/ repository first, then verify the pushed branch. See the root README's "Git-backed deploy" section for the full model.

integra init

Scaffolds a new integration. The real working tree is written to .integrations/<id>/live on the host (not at <path> itself — see the root README's "Integra home" and "Git-backed deploy" sections), turned into a git repository, and registered. <path> itself receives only a generated guide with clone and workflow instructions:

.integrations/<id>/live/
  connections/   maps/   processes/   resolvers/   logs/
  test/fixtures/webhooks/   test/fixtures/responses/   test/fixtures/.disabled/
  integra.json   .env.example

integra duplicate

Same sequence as integra init, with one difference: instead of an empty template, the new live/ is seeded from --id's --branch — already pushed into that integration's own live/. The result is a genuine fork: brand new git history, no shared ancestry with the source, no way to fast-forward changes between the two afterward. The forked integra.json keeps the source branch's real values (its entry process, in particular) — only id is rewritten and created is regenerated.

The fork is deliberately not wired to connect anywhere out of the box. A committed .env is renamed to env.default (credentials preserved, just not under a name the engine treats as a default) and a fresh .env.example replaces whatever the source branch's own contained. Connecting the fork is then an explicit decision — cp env.default .env, or write new credentials entirely. Any other committed env file (.env.dev, .env.staging, etc.) is left exactly as committed.

Use this to run the same integration's logic on two credential sets simultaneously (each fork gets its own live/, sheltered the same way a fresh init is), or to branch off an integration's logic into something that will diverge for good.

integra test

Runs a pushed branch end-to-end against fixture files — no real HTTP calls. Requires --id and --branch. Place response fixtures in test/fixtures/responses/ and webhook fixtures in test/fixtures/webhooks/, committed on the branch like any other file. Use test/fixtures/.fixture-map.json to map outbound URLs to fixtures when you have more than one response file.

integra ping

Requires --id and --branch. Fires connections/no-op.json (or the connections named via --con) from the resolved branch and reports reachability. The implementor provides a safe, side-effect-free connection to use as the connectivity check.

Links

License

BSL 1.1 — free to use commercially as a component of your own products. May not be resold or repackaged as a standalone product. Converts to Apache 2.0 on 2030/12/31. See LICENSE and NOTICE for details.