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

@gpkit/arch-rules

v1.0.0

Published

Perfiles de arquitectura: dependency-cruiser (fronteras de capa) + ESLint (checks de patrón que depcruise no puede expresar).

Downloads

51

Readme

@gpkit/arch-rules

Perfil de reglas para dependency-cruiser que verifica las fronteras entre las capas de un servicio backend organizado por funcionalidades: que el dominio no conozca la infraestructura, que una funcionalidad no importe las interioridades de otra y que el código de aplicación no dependa del de infraestructura como código.

Es un archivo de configuración. No aporta código en tiempo de ejecución.

npm i -D @gpkit/arch-rules dependency-cruiser

Perfil serverless-nest

// .dependency-cruiser.js
module.exports = require('@gpkit/arch-rules/serverless-nest');
// package.json
{ "scripts": { "arch:check": "depcruise --config .dependency-cruiser.js src" } }

Asume esta estructura, con una carpeta por funcionalidad y tres capas dentro:

src/
  <funcionalidad>/
    domain/
    application/
    infrastructure/
  common/
infra/            infraestructura como código

| Regla | Qué impide | | ---------------------------------- | ------------------------------------------------------------------ | | no-cross-feature-internals | Que una funcionalidad importe las interioridades de otra | | no-application-in-domain | Que domain/ dependa de application/ | | no-infrastructure-in-domain | Que domain/ dependa de infrastructure/ | | no-infrastructure-in-application | Que application/ dependa de infrastructure/ | | no-common-imports-feature | Que common/ dependa de una funcionalidad concreta | | no-src-imports-infra | Que el código de aplicación importe la infraestructura como código | | no-infra-imports-domain | Que la infraestructura como código importe el dominio |

Cada violación se reporta con el archivo, la línea y el nombre de la regla, y devuelve un código de salida distinto de cero.


Perfil de ESLint para infraestructura

// eslint.config.mjs
import infra from '@gpkit/arch-rules/eslint-infra';

Reglas que dependency-cruiser no puede expresar porque miran dentro del archivo en lugar del grafo de importaciones.


Ejecución automática

Para que las reglas bloqueen, se ejecutan en el pre-push y en la integración continua:

npm i -D husky
npx husky init
# .husky/pre-push
npm run arch:check

En pre-push y no en pre-commit: recorrer el grafo completo tarda varios segundos, un coste que interesa pagar antes de publicar la rama y no en cada commit.

El mismo paso va en el pipeline, porque un hook local se omite con --no-verify.