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

adfinem

v0.1.1

Published

Open-source QA test helper for deterministic API, database, Unix, and workflow automation

Downloads

657

Readme

Adfinem

Open-source end-to-end QA test helper for deterministic API, database, Unix batch, and workflow automation.

Adfinem is built for testers working on enterprise-grade business solutions where repeatable, catalog-gated checks matter.

Adfinem executes catalog-gated workflows only. Scenario YAML can reference:

  • catalogs/api-operations.yaml
  • catalogs/queries.yaml
  • catalogs/batches.yaml

What It Does

Adfinem lets QA teams define repeatable end-to-end checks that combine:

  • REST API calls from an allowlisted operation catalog
  • database queries, assertions, and execution steps
  • Unix commands over SSH, including batch operations and file-backed processing
  • SFTP file placement before Unix jobs and output retrieval after they finish
  • workflow files that chain API, DB, Unix, loop, parallel, and reusable flow blocks
  • dry-run validation before touching external systems
  • evidence output for executed runs

Install

npm install
npm run check

The published CLI can also be installed globally:

npm install -g adfinem
adfinem init my-adfinem-tests
cd my-adfinem-tests
adfinem validate scenarios/smoke/account-processing-smoke.yaml
adfinem app

Commands

npm install
npm test
npm run build
npm run validate
npm run smoke:dry

CLI-Only Usage

Adfinem can be used fully from the terminal when a GUI is not wanted.

# Create a starter project when using the global package
adfinem init my-adfinem-tests
cd my-adfinem-tests

# Open the web workbench for the current project
adfinem app

# Validate a scenario before running it
adfinem validate scenarios/smoke/account-processing-smoke.yaml

# Run a scenario without external side effects
adfinem run scenarios/smoke/account-processing-smoke.yaml --env local --dry-run

# Execute a cataloged API operation
adfinem api-call create_test_case --env local --param tenant=demo --param external_id=CASE-1001 --param case_type=account-processing

# Execute a cataloged DB query
adfinem db-query test_activity_exists --env local --param case_id=CASE-1001 --param amount=json:111

# Run a cataloged Unix batch
adfinem run-batch daily_processing --env local --param processing_date=2026-04-27

Use --dry-run while catalogs and environment credentials are still being completed.

See docs/FLOW_BUILDER.md for flow files and docs/DB_UNIX_OPERATIONS.md for database and Unix scenario steps.

Package Safety

The npm package is allowlisted through package.json#files so local state such as .env, evidence, logs, dependencies, and uploaded batch input files are not included in published artifacts.

Before publishing or opening a release PR, run:

npm run check
npm run package:dry-run

License

MIT