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

fundamentum-cli

v0.2.2

Published

Bootstrap and harden GitHub repos for OSS collaboration — community files, branch protection, security features, and starter workflows in one command.

Readme

fundamentum-cli

One command to make your GitHub repo look (and behave) like a pro open-source project.

GitHub

Fundamentum bootstraps and hardens GitHub repos for OSS collaboration — community health files, branch protection, secret scanning, and starter CI workflows. You bring the code, it brings the polish.

Install

npm install -g fundamentum-cli

Try without a global install:

npx fundamentum-cli --version
npx fundamentum-cli apply OWNER/REPO

Works on macOS and Linux (x64 and arm64) and Windows (x64). Postinstall downloads the matching prebuilt binary from GitHub Releases with embedded SHA-256 verification.

A git checkout keeps package.json at 0.0.0 and will not download a binary. Build it locally instead:

go build -o npm/bin/fundamentum .
# Windows: go build -o npm/bin/fundamentum.exe .

npm 9+ / Ubuntu 26+ note: npm's allow-scripts security policy may block the postinstall script, so the binary won't be downloaded at install time. No worries — if fundamentum is invoked without a binary present it detects this and downloads automatically. You can also trigger it manually:

node $(npm root -g)/fundamentum-cli/install.js

Quickstart

# Harden an existing repo
fundamentum apply OWNER/REPO

# Create a new repo + harden it in one shot
fundamentum init OWNER/REPO

# Preview everything before touching anything
fundamentum --dry-run apply OWNER/REPO

# Apply file changes via a pull request
fundamentum --pr apply OWNER/REPO

That's it. A repo that went from bare-bones to release-ready in under a minute.

What you get

  • Community health filesCONTRIBUTING.md, CODEOWNERS, CODE_OF_CONDUCT.md, SECURITY.md, issue + PR templates, dependabot.yml
  • Branch protection — modern rulesets on main (PR-only pushes, CODEOWNERS review, required checks, no force-push)
  • Security — Dependabot alerts everywhere; secret scanning + push protection on public repos, opt-in on private/internal repos via --advanced-security; CodeQL for public repos
  • Starter workflows — CI, coverage, and CodeQL pipelines that work out of the box
  • Idempotent by design — re-running is always safe

Why fundamentum?

| Manual setup | fundamentum | |---------------|-------------| | 20+ files and settings across 6 GitHub pages | One command | | "Which templates does everyone use?" | Opinionated, proven defaults | | Copy-paste from another repo, hope it's current | Rendered fresh, version-controlled | | "Did I forget CODEOWNERS?" | Full summary table before you apply | | Private repo? Pro account? | Graceful fallbacks for free-tier |

Built for solo devs and small teams who want their repos to feel like they were made by someone who cared.

Commands

| Command | Purpose | |---------|---------| | apply OWNER/REPO | Harden an existing repo | | init OWNER/REPO | Create a new repo, then harden it | | audit OWNER/REPO | Verify the repo matches the harden baseline | | export | Write a portable JSON baseline (-o for a file) | | --dry-run | Preview the full plan without applying | | --pr | Batch file changes into a PR; settings/security/protection still apply live | | --no-overwrite | Only add missing files, never touch existing ones | | --advanced-security | Enable GHAS (secret scanning, push protection) on private/internal repos (paid) | | --strict | Fail the run when any core harden step fails, including optional tag/security items | | --require-checks | Required status-check contexts for protect-main (comma-separated; default: jobs for the resolved --ci pack) | | --ci | CI pack: auto (detect go/node/python/rust, else generic), go, node, python, rust, generic, or none | | --preset | Named baseline: oss (no prompts), private (solo, no GHAS prompt), strict (--strict + GHAS) | | --from | Load a portable JSON baseline from export |

Prerequisites

A GitHub token with repo scope (classic) or Contents + Metadata + Administration (fine-grained) — via GITHUB_TOKEN or --token.

License

MIT — see LICENSE.

fundamentum is an independent project, not affiliated with GitHub.