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

@asuaarch/eslint-plugin-asua

v1.0.1

Published

ESLint plugin enforcing ASUA (Axiom-Stratum Unified Architecture) laws for React and Next.js projects.

Readme

🏗️ eslint-plugin-asua

Enforce Axiom-Stratum Unified Architecture (ASUA) with Surgical Precision

version license build stars


ASUA transforms frontend architecture from a "handshake agreement" into verifiable system constraints. This plugin makes architectural violations build errors—not just code review comments.

PhilosophyQuick StartLayersRules

🚀 Why ASUA?

Traditional architectures drift. ASUA stays rigid where it matters:

  • Zero Circular Dependencies: Law 1 (Down Only) ensures a strict vertical flow.
  • Isolated Domains: Law 4 (Feature Isolation) prevents "spaghetti modules".
  • Self-Documenting Code: ASUA headers reveal a file's intent at a glance.
  • Predictable Performance: Purity and Runtime constraints enforced at the compiler level.

🛠️ Installation

npm install eslint-plugin-asua --save-dev

⚡ Quick Start

Add the starter profile to your .eslintrc.js:

module.exports = {
  extends: ["plugin:asua/starter"],
};

That's it. You now have Law 1 (Down Only) and Header Validation active.


🧬 The Six Layers

| Layer | Type | Question | Example | | :------------------ | :--- | :--------------------------- | :---------------------------- | | L0 Foundation | 🏗️ | "What technical capability?" | API clients, caching | | L1 Boundary | ⛩️ | "What application?" | layout.tsx, providers | | L2 Screen | 📱 | "What route?" | page.tsx | | L3 Orchestrator | 🧠 | "What data/logic?" | Fetch → Decide → Compose | | L4 Structure | 📐 | "Where does content go?" | Layouts with typed slots | | L5 Meaning | 💎 | "What domain concept?" | ProductCard, OrderSummary | | L6 Element | 🧱 | "What visual primitive?" | Button, Badge, Card |


⚖️ Enforced Rules

| Rule | Law | Default | Fixable | | :----------------------- | :-------- | :--------- | :------ | | asua/down-only | Law 1 | 🔴 error | No | | asua/orthogonality | Law 2 | 🔴 error | No | | asua/single-question | Law 3 | 🟡 warn | No | | asua/feature-isolation | Law 4 | 🔴 error | No | | asua/valid-header | — | 🔴 error | No | | asua/valid-layer-kind | — | 🔴 error | No |


✍️ Usage: ASUA Headers

Add these headers to your files to define their architectural "Passport":

// @asua layer: meaning
// @asua kind: domain
// @asua runtime: client
// @asua purity: pure

export function ProductCard({ product }: ProductCardProps) {
  return <Card>{product.name}</Card>
}

⚙️ Advanced Configuration

Custom Mapping

Map your existing directory structure to ASUA layers:

rules: {
  'asua/down-only': ['error', {
    directoryMap: {
      'components': 'element',
      'containers': 'orchestrator',
      'views': 'structure',
    },
    srcRoot: 'src',
  }],
}

📖 Related Resources


📜 License

Apache License 2.0 © Habtamu Geta