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

@f12r/f12r

v1.0.1

Published

A macOS developer environment setup and management CLI.

Readme

f12r

f12r is a macOS CLI for checking, installing, and uninstalling common developer tools.

It helps developers:

  • inspect their machine with f12r doctor
  • install missing tools with f12r setup
  • install everything non-interactively with f12r setup --all
  • remove supported tools with f12r uninstall

Features

  • checks for Homebrew, Git, Node.js, npm, Docker, and VS Code
  • shows friendly colored output
  • installs missing tools with Homebrew
  • installs selected VS Code extensions
  • supports interactive and --all setup flows
  • works as a global CLI command: f12r

Install

Homebrew

brew install FahimMuntashir/f12r/f12r

npm

npm install -g @f12r/f12r

Quick Start

f12r --help
f12r doctor
f12r setup

Commands

f12r doctor

Checks whether these tools are installed:

  • Homebrew
  • Git
  • Node.js
  • npm
  • Docker
  • VS Code

It also shows version info when available.

f12r setup

  • detects missing tools
  • installs Homebrew automatically if needed
  • asks before installing each missing tool
  • can install these VS Code extensions:
  • esbenp.prettier-vscode
  • dbaeumer.vscode-eslint
  • GitHub.copilot

f12r setup --all

Installs all missing supported tools without per-tool prompts.

f12r uninstall

Lets the user choose a supported tool to remove with Homebrew.

Local Development

npm install
node index.js --help
node index.js doctor
node index.js setup
node index.js uninstall

To link it globally on your machine:

npm link

Tech Stack

  • Node.js
  • CommonJS
  • commander
  • inquirer
  • chalk
  • ora
  • execa

Project Links

  • GitHub source: https://github.com/FahimMuntashir/f12r
  • Homebrew tap: https://github.com/FahimMuntashir/homebrew-f12r
  • npm package: @f12r/f12r

Maintainer Notes

If you are updating or republishing this project later, use:

  • RELEASE_GUIDE.md for the full release workflow
  • AI_CONTEXT.md for future AI-agent handoff context