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

dokkimi

v0.5.6

Published

CLI for isolated Docker environments for microservice testing

Readme

Dokkimi

The only testing framework that does integration, E2E, and visual regression testing. All without a staging environment.

Dokkimi spins up isolated Docker environments from simple YAML/JSON definitions. It deploys your services, databases, and mocks into dedicated networks, drives a real browser through your UI, intercepts all inter-service HTTP traffic, and runs automated test suites that assert on responses, traffic patterns, database state, and screenshots.

Built for AI-Assisted Development

Dokkimi ships with a built-in MCP server that gives your AI coding agent full access to the testing workflow. On first run, the MCP server auto-registers with Claude Code, Cursor, and GitHub Copilot — no manual configuration needed.

Your AI agent can:

  • Write and validate definitions — look up the spec with get_reference, scaffold with init, validate with validate_file, list shared fragments with list_fragments
  • Run and monitor testsrun_tests to execute, watch_run for live status, get_run_summary for results
  • Debug failuresget_failures for what broke, get_traffic / get_console_logs / get_db_logs for the raw data, diagnose for automated root-cause analysis, diff_traffic to compare runs
  • Manage the environmentstatus, doctor, stop, clean, reboot, get_config / set_config

Ask your AI to "write a test definition for the checkout flow" or paste a dokkimi dump into your conversation and it just works.

Why Dokkimi?

Testing microservices is hard. Unit tests mock away the interesting parts. Integration tests are flaky and slow to set up. Staging environments drift from reality.

Dokkimi gives you isolated test environments on demand:

  • E2E UI testing — drive a real browser alongside your services. Click, type, navigate, and assert on what the user sees.
  • Visual regression — screenshot any step, diff against baselines. Catch visual regressions before they ship.
  • Traffic interception — capture every HTTP call between services. Assert on exactly what was sent and received.
  • Mock external APIs — intercept calls to external APIs such as Stripe, Auth0, Twilio, and more. Return controlled responses. No test accounts needed.
  • Body-aware mock routing — return different mock responses from the same endpoint based on request body content. Test LLM prompt routing, GraphQL queries, and RPC-style APIs where every call hits one URL.
  • Database seeding & queries — seed Postgres, MySQL, MongoDB, or Redis before tests with custom data. Query directly in assertions to verify content.
  • Isolated environments — every test run gets its own Docker network with dedicated services, databases, and browser. No shared state. No corrupted tests.
  • Variable extraction — extract values from responses using JSONPath + regex capture groups, then use them in subsequent steps.
  • Parallel test execution — run steps in parallel within a test, and run multiple test definitions concurrently.
  • Loop modifiers — iterate over data with forEach, repeat numeric ranges with for, or poll with repeat + until. Loops work at every level: test, step, action, assertion block, and UI sub-step groups.
  • Zero code changes — your services run unmodified. Dokkimi wires up sidecars, routing, DNS, browser, and cleanup.

Install

# Global install
npm install -g dokkimi

# Or with Homebrew
brew install dokkimi/tap/dokkimi

# Or as a project devDependency
yarn add -D dokkimi

Prerequisites

  • Node.js 22+
  • Docker

Run dokkimi doctor after installing to verify your setup.

Quick Start

# Scaffold a .dokkimi/ folder with example files
dokkimi init

# Validate your definitions
dokkimi validate

# Run tests
dokkimi run

# Inspect traffic from the last run
dokkimi inspect

# Review pending visual baselines
dokkimi baselines

What a Definition Looks Like

A .dokkimi/ folder contains YAML or JSON files that describe your test environment and assertions:

name: author-publish-flow
items:
  - $ref: ../shared/web-app.yaml
  - $ref: ../shared/api-gateway.yaml
  - $ref: ../shared/post-service.yaml
  - $ref: ../shared/postgres-db.yaml
  - $ref: ../shared/mock-auth0-jwks.yaml

tests:
  - name: Publish a post through the UI
    steps:
      # Drive the browser through the publish flow
      - name: Create and publish a post
        action:
          type: ui
          target: web-app
          steps:
            - visit: /posts/new
            - type:
                selector: '#title'
                text: 'My new post'
            - click: '[data-testid="publish-btn"]'
            - waitFor: '[data-testid="success-toast"]'
            - screenshot: post-published
        assertions:
          # Verify the API call went through correctly
          - match:
              path: '$.traffic'
              where:
                - path: '$$.origin'
                  operator: eq
                  value: web-app
                - path: '$$.request.method'
                  operator: eq
                  value: POST
                - path: '$$.request.url'
                  operator: contains
                  value: api-gateway/v1/posts
              count: 1
            assertions:
              - path: '$.match.response.status'
                operator: eq
                value: 201

      # Confirm it was persisted
      - name: Verify post in database
        action:
          type: dbQuery
          database: postgres-db
          query: "SELECT title FROM posts WHERE title = 'My new post'"
        assertions:
          - assertions:
              - path: $.response.data[0].title
                operator: eq
                value: My new post

This single definition spins up a web app, API gateway, post service, Postgres database, and an Auth0 mock — then drives a browser through the publish flow, asserts on the inter-service HTTP call, and verifies the data was written to the database.

Services are defined as shared fragments and referenced with $ref — write once, reuse across all your test definitions. Refs are recursive: a fragment can $ref another fragment, building up inheritance chains with overrides at each level.

# .dokkimi/shared/api-gateway.yaml
type: SERVICE
name: api-gateway
image: ${{REGISTRY}}/api-gateway:${{IMAGE_TAG}}
port: 3000
healthCheck: /health
env:
  - name: DATABASE_URL
    value: postgresql://dokkimi:dokkimi@postgres-db:5432/dokkimi
  - name: USER_SERVICE_URL
    value: http://user-service:3000

Image tags and other values can be centralized in .dokkimi/config.yaml using ${{VAR}} syntax — change once, apply everywhere. Definition-level variables can also be used in item fields with {{VAR}} syntax, letting you share passwords, hostnames, and other values across items without duplication.

Commands

| Command | Description | | --------------------------- | ------------------------------------------------- | | dokkimi init | Scaffold a .dokkimi/ folder with examples | | dokkimi run [target] | Run definition(s) and stream results | | dokkimi validate [target] | Validate definitions without running | | dokkimi inspect | Inspect traffic logs from the last run | | dokkimi baselines | Review and approve pending visual baselines | | dokkimi dump | Export last run as JSON for AI-assisted debugging | | dokkimi junit | Generate a JUnit XML report from a test run | | dokkimi stop | Stop the current test run | | dokkimi doctor | Check prerequisites and system health | | dokkimi mcp | Start the MCP server (auto-registered on install) | | dokkimi status | Show whether Dokkimi is running | | dokkimi clean | Stop all instances and clean up resources | | dokkimi config | View and edit Dokkimi settings | | dokkimi reboot | Restart Dokkimi services | | dokkimi uninstall | Remove Dokkimi from your system | | dokkimi version | Show installed version |

The [target] argument is flexible — pass a directory, a specific file, a glob pattern, or a substring to match definition names.

Documentation

Full reference for writing .dokkimi/ definition files: ~/.dokkimi/dokkimi-instructions.md (installed automatically on first run).

License

Elastic License 2.0 — free to use, modify, and distribute. Cannot be offered as a managed service.