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

adograb

v0.1.9

Published

Browse and clone Azure DevOps repositories from the terminal.

Readme

adograb

Browse and clone Azure DevOps repositories from the terminal.

Features

  • Interactive repo browser — fuzzy-searchable list of all repositories in your project
  • Direct clone by name — clone any repo without the menu
  • PAT or Git Credential Manager auth — use a Personal Access Token or your existing machine credentials
  • Project switcher — switch between projects in the same organization without re-running init
  • Auth mode switcher — toggle between auth modes at any time
  • Config management — view and reset saved settings

Requirements

  • Node.js 20 or later
  • Git installed and on PATH
  • An Azure DevOps organization URL (e.g. https://dev.azure.com/my-org)

Installation

npm install -g adograb

Quick Start

# 1. Run first-time setup
adograb init

# 2. Browse and clone
adograb

Commands

adograb or adograb list

Opens an interactive repository browser. Use arrow keys to navigate, type to filter. Selecting a repository prompts for confirmation, then clones it to your configured clone root.

adograb init

First-time setup wizard:

  1. Prompts for your Azure DevOps organization URL
  2. Asks you to choose an authentication mode (Git Credential Manager or PAT)
  3. Connects to ADO and lets you select a project
  4. Asks where to clone repositories

adograb clone <name>

Clone a specific repository by name without the interactive menu.

adograb clone my-repo-name

adograb config show

Display the currently saved configuration.

Organization URL   https://dev.azure.com/my-org
Project            My Project (abc123...)
Auth mode          pat
Clone root         /home/user/code

adograb config reset

Clear all saved configuration and remove stored credentials. You will be asked to confirm.

adograb project switch

Fetch all projects from your organization and switch to a different one. Your organization URL and authentication settings are preserved.

adograb auth switch

Change authentication mode. Prompts for a new PAT if switching to PAT mode, or removes the stored PAT when switching to default mode.

Authentication

Default — Git Credential Manager (recommended)

Uses the credentials managed by Git Credential Manager. No token required — if you can already run git clone against your ADO organization, this mode will work.

PAT Token

Enter a Personal Access Token with at minimum Code (Read) scope. The PAT is stored in the operating system credential store (macOS Keychain, Windows Credential Manager, or Linux Secret Service) and never written to disk in plain text.

To generate a PAT: Azure DevOps → User Settings → Personal access tokens → New Token.

Configuration Storage

Settings are stored using conf in the platform's standard config directory:

| Platform | Location | |----------|----------| | macOS | ~/Library/Preferences/adograb-nodejs/ | | Windows | %APPDATA%\adograb-nodejs\Config\ | | Linux | ~/.config/adograb-nodejs/ |

PATs are stored in the OS credential store — they are not in the config file.

License

MIT