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

@openhi/constructs

v0.0.123

Published

AWS CDK constructs for deploying OpenHI infrastructure. The library provides reusable constructs for applications, shared infrastructure (auth and core resources), data services, and common components used across OpenHI stacks.

Readme

@openhi/constructs

AWS CDK constructs for deploying OpenHI infrastructure. The library provides reusable constructs for applications, shared infrastructure (auth and core resources), data services, and common components used across OpenHI stacks.

Source Boundaries

  • src/components: reusable infrastructure building blocks and thin service integrations around AWS primitives.
  • src/data: persistence models, data access operations, API routes, and storage-specific handlers.
  • src/workflows: deployed async business processes, their EventBridge event contracts, workflow Lambda constructs, handlers, and tests.

Workflow Lambdas should live under a plane namespace such as src/workflows/control-plane or src/workflows/data-plane. Trigger-specific handlers in components or API routes should stay thin and publish workflow events when the business process can run asynchronously.

Use events.ts for EventBridge contracts, <workflow>.handler.ts for runtime handlers, <workflow>-lambda.ts for Lambda constructs, <workflow>.handler.test.ts for handler tests, and a <domain>-workflow.ts construct when EventBridge rules or multiple workflow Lambdas are deployed together.

Strategy

Workflow placement (bus selection, Lambda vs. Step Functions, standard event envelope, idempotency contract, cross-boundary rules) is governed by ADR-016 — Workflow Boundary Strategy in the planning repo.