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

@flancer32/teq-web

v0.16.0

Published

Server-side web request coordination infrastructure for TeqFW modular monolith applications.

Readme

@flancer32/teq-web

npms.io

Human-governed. Agent-built. Agent-ready.

@flancer32/teq-web coordinates deterministic web request processing through a built-in Node.js server and ordered handler pipeline. It is part of the Tequila Framework (TeqFW): created and evolved by coding agents under the architectural direction and final responsibility of Alex Gusev, and shipped with a version-matched Agent Skill so other agents can understand, integrate, and use it correctly.

Why use it

The package gives independently developed TeqFW packages one predictable request lifecycle while leaving runtime assembly under application control. It provides:

  • a unified server boundary for http, http2, and https;
  • deterministic handler ordering from declarative before/after metadata;
  • the fixed INIT -> PROCESS -> FINALIZE request lifecycle;
  • request completion and safe 404 Not Found / 500 Internal Server Error fallbacks;
  • optional static-file delivery and a CLI command for starting the server.

It is an orchestration layer, not a routing or controller framework. Routing, business logic, persistence, sessions, authentication, and application architecture remain outside the package.

Request lifecycle

Each request passes through three stages:

INIT -> PROCESS -> FINALIZE

Handlers are registered before the runtime starts. The Pipeline Engine derives their effective order from registration metadata and coordinates execution. A PROCESS handler completes a request by ending the response and setting context.completed = true; FINALIZE still runs afterward.

Quick Start

Install the package in a TeqFW application:

npm install @flancer32/teq-web

Register the package namespace with the host application's TeqFW DI container, add application handlers before server start, and configure the transport:

pipeline.addHandler(helloHandler);

await server.start({
  host: "127.0.0.1",
  port: 3000,
  type: "http",
});

The package requires Node.js >=20 and a configured TeqFW DI container. See the Agent Skill for the complete composition and configuration contract.

Agent Skill

The package distributes a version-matched consumer skill at skills/teqfw-web/. Its SKILL.md and references cover lifecycle semantics, handlers, server configuration, static files, distribution, and TeqFW integration.

Agent-Driven Development

TeqFW is built through the same development model that it is designed to enable: one human defines the intent, architecture, constraints, and acceptance criteria; coding agents implement and maintain the products; other agents use those products in different combinations to create applications.

@flancer32/teq-web is part of TeqFW and provides its web runtime orchestration layer. The package includes a version-matched Agent Skill in skills/teqfw-web/. The README provides a human-facing product overview; the skill provides agents with the package concepts, contracts, integration rules, examples, and boundaries.

Mount the skill into a host project:

mkdir -p .agents/skills
ln -s ../../node_modules/@flancer32/teq-web/skills/teqfw-web \
  .agents/skills/teqfw-web

Each TeqFW package is both a practical software component and a working demonstration of human-governed, agent-driven development. This work follows the Agent-Driven Software Management (ADSM) approach: human intent, architectural authority, acceptance, and responsibility remain authoritative; agents act as implementation and reasoning partners.

License

Apache-2.0