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

@opinionated-machine/gateway-envoy

v0.2.0

Published

Envoy config generator for opinionated-machine gateway manifests

Readme

@opinionated-machine/gateway-envoy

Generate an Envoy v3 static config from your opinionated-machine routes. Annotate routes once with timeouts / retries / header rules / etc., then run this generator at build time and deploy the resulting envoy.yaml.

npm install --save-dev @opinionated-machine/gateway-envoy

opinionated-machine is a peer dependency.

Use it

// bin/render-envoy.ts
import { writeFileSync } from 'node:fs'
import { renderEnvoyConfig } from '@opinionated-machine/gateway-envoy'
import { buildContext } from '../src/diContext.ts'   // your DIContext factory

const ctx = await buildContext()
const manifest = ctx.buildGatewayManifest({ service: 'users-api' })

const { yaml, warnings } = renderEnvoyConfig(manifest, {
  listenPort: 8080,
  clusters: {
    'users-service': { hosts: ['users:8081'], connectTimeout: '1s' },
  },
})

writeFileSync('envoy.yaml', yaml)
if (warnings.length) console.warn('[envoy]', warnings)
$ tsx bin/render-envoy.ts && envoy --mode validate -c envoy.yaml
configuration 'envoy.yaml' OK

renderEnvoyConfig(...) also returns json (the same config as a JS object, handy for tests and inspection).

How metadata maps to Envoy

| Route metadata | Envoy output | | -------------- | ------------ | | upstream | route's cluster; deduped clusters under static_resources.clusters | | match.headers / customHeaders | route.match.headers[] (exact / prefix / safe_regex) | | match.query / customQuery | route.match.query_parameters[] | | timeouts.request | route.timeout | | timeouts.connect | cluster.connect_timeout (set via EnvoyClusterOptions.connectTimeout) | | retry.attempts | route.retry_policy.num_retries | | retry.on | route.retry_policy.retry_on (CSV) | | retry.perTryTimeout | route.retry_policy.per_try_timeout | | rewrite.stripPrefix | route.prefix_rewrite: '/' | | headers.request.{add,remove} | route.request_headers_to_{add,remove} | | headers.response.{add,remove} | route.response_headers_to_{add,remove} | | extensions.envoy | shallow-merged onto the route last (escape hatch) |

What it doesn't do

These metadata fields produce a warnings[] entry instead of being silently dropped — they need an Envoy filter that this generator doesn't wire for you:

  • cache.ttl — needs envoy.filters.http.cache
  • auth.jwt — needs envoy.filters.http.jwt_authn
  • cors — needs envoy.filters.http.cors
  • rateLimit — needs envoy.filters.http.local_ratelimit
  • circuitBreaker — applies at the cluster level

For any of these, configure the filter once in your Envoy listener and use extensions.envoy on the route to attach the per-route typed-config block.

Verifying generated configs

This package's CI runs an acceptance suite that boots a real Envoy container plus a stub upstream and drives traffic through the generated config:

npm run test:acceptance

Requires Docker. Triggered automatically by the gateway-acceptance workflow when this package or lib/gateway/ changes.