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

@nimba/config

v0.17.0

Published

Nimba task/flow library and layered nimba.yml config system (a compatible superset of cumulusci.yml).

Readme

@nimba/config

The Nimba task/flow library and config system — ships the built-in universal.nimba.yml (32 flows, the standard task definitions) and the loader, schema, and layering that turn nimba.yml files into a resolved project config.

Part of Nimba, modern Salesforce DevOps orchestration in TypeScript. Most users want @nimba/cli, not this package directly.

Install

npm install @nimba/config

What it is

  • The universal library (universal.nimba.yml) — Nimba's built-in tasks and flows (dev_org, ci_feature, ci_master, install_prod, the 2GP/unlocked release chains, and more), shipped with the package.
  • Config loader + schema — parses and validates nimba.yml, a compatible superset of cumulusci.yml, into a typed config.
  • Layering — merges config lowest-to-highest precedence: built-in universal library → machine-wide override (~/.nimba/nimba.yml) → project ./nimba.yml → project-local override.
  • Condition evaluation — the when: step conditions over project_config.* / org_config.*.
  • Named workflow graphs — optional start, named steps, conditional transitions, bounded cycles with explicit exhaustion targets, per-node JSON output schemas, and typed terminals. Existing numbered sequential flows remain unchanged.

Named graph example

flows:
  review:
    start: inspect
    steps:
      inspect:
        task: inspect_change
        output_schema:
          type: object
          required: [outcome]
        transitions:
          - to: inspect
            when: { path: result.data.outcome, equals: retry }
            maxTransitions: 3
            exhausted: retry_exhausted
          - to: approved
            when: { path: result.data.outcome, equals: approved }
    terminals:
      approved: { status: completed }
      retry_exhausted: { status: loop-exhausted }

Named graph limits

  • A flow: node runs its target on the sequential runner, so a named graph cannot nest another named graph. Nest a numbered sequential flow, or inline the child's nodes into the parent. Config that nests one is rejected at load, including across a sources: boundary.
  • Unlike tasks and flows a source ships that Nimba's schema doesn't model — which are skipped with a warning — an invalid named graph from a source fails the load. A graph that silently disappears resurfaces later as unknown flow, far from its cause.

Requirements

  • Node.js >= 20

Links