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

codebase-architecture-guidelines

v1.0.3

Published

CLI to copy architecture guideline files and directories into a target project.

Readme

Codebase Architecture Guidelines

A small, opinionated set of architecture and directory-structure rules used to guide coding agents and human contributors.

These documents are normative for projects that adopt them. They define how code should be organized and what architectural style should be followed for each project type.

What This Repository Contains

  • frontend/FrontEnd.md
    • Frontend structure and route-centric architecture rules.
  • backend/Backend.md
    • Backend modular monolith (DDD-aligned) structure and module organization rules.
  • browser-extension/Browser-Extension.md
    • Browser extension multi-context structure and placement rules.

Purpose

Use these files to:

  • keep codebases easy to navigate,
  • make architecture expectations explicit,
  • reduce ambiguity for coding agents,
  • keep placement decisions consistent over time.

Scope

These files are intended to define:

  • directory structure,
  • architecture shape,
  • code placement intent.

These files intentionally do not define:

  • dependency rules,
  • global concern policy,
  • state-management strategy,
  • data-flow strategy,
  • implementation techniques.

Those decisions are left to the implementing agent unless a project adds extra rules.

How To Use In Other Projects (Manual)

  1. Copy the relevant file(s) into your target repository.
  2. Place them in a visible docs location, for example: docs/architecture/.
  3. Tell your coding agent these files are authoritative for that project.
  4. When this repo updates, re-copy the files you use.

CLI Usage (npm Global Install)

You can install this package globally and copy guideline directories into your current project path.

  1. Install globally:
npm install -g codebase-architecture-guidelines
  1. From your target project root, run with directory-level targets:
codebase-guidelines copy backend
codebase-guidelines copy frontend browser-extension

Valid targets:

backend
frontend
browser-extension

Each command copies selected directories into: <current-working-directory>/codebase-architecture-guidelines/

  1. Overwrite existing copied directories:
codebase-guidelines copy backend --force

Adaptations and Sharing

  • Pull requests are optional. You are not required to contribute changes back to this repository.
  • If you adapt these guidelines, please open an issue in this repo and link your adapted version (repo, gist, or docs URL).
  • Keep attribution to this repository in downstream copies and include a link to your adapted version so others can discover improvements.
  • See CONTRIBUTING.md for the contribution and adaptation policy.