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

paprika-recipe-cli

v0.1.0

Published

Unofficial CLI for Paprika Recipe Manager

Readme

paprika-recipe-cli

⚠️ Unofficial CLI for Paprika Recipe Manager
Not affiliated with or endorsed by Hindsight Labs LLC.

A command-line interface for Paprika Recipe Manager. Access your recipes, meal plans, and grocery lists from the terminal.

Installation

npm install -g paprika-recipe-cli

Or run directly with npx:

npx paprika-recipe-cli --help

Quick Start

# Authenticate (interactive)
paprika auth

# List your recipes
paprika recipes

# Search for a recipe
paprika search "chicken"

# View a recipe
paprika recipe "Pasta Carbonara"

# Check your grocery list
paprika groceries

Commands

Authentication

paprika auth              # Interactive login
paprika logout            # Clear stored credentials
paprika whoami            # Show current user

Recipes

paprika recipes                        # List all recipes
paprika recipes --category "Dinner"    # Filter by category
paprika recipes --json                 # Output as JSON

paprika recipe "Pasta Carbonara"       # View by name
paprika recipe <uid>                   # View by UID
paprika recipe "Pasta" --ingredients-only
paprika recipe "Pasta" --json

paprika search "chicken"               # Search recipes
paprika search "quick dinner" --json

Meal Planning

paprika meals                   # Show all planned meals
paprika meals --date 2026-01-08 # Filter by date
paprika meals --json

Groceries

paprika groceries        # Show unpurchased items
paprika groceries --all  # Include purchased items
paprika groceries --json

Categories

paprika categories       # List all categories
paprika categories --json

Options

Global flags available on all commands:

| Flag | Description | |------|-------------| | -h, --help | Show help | | -V, --version | Show version number | | --no-color | Disable colored output | | --json | Output as JSON (where applicable) |

Environment Variables

| Variable | Description | |----------|-------------| | PAPRIKA_EMAIL | Email for authentication | | PAPRIKA_PASSWORD | Password for authentication | | NO_COLOR | Disable colored output (any value) |

For non-interactive use (scripts, CI/CD), set both PAPRIKA_EMAIL and PAPRIKA_PASSWORD environment variables.

Exit Codes

| Code | Meaning | |------|---------| | 0 | Success | | 1 | Generic failure | | 2 | Invalid usage (bad arguments) | | 3 | Authentication failure |

Examples

Export all recipes to JSON

paprika recipes --json > my-recipes.json

Get ingredients for a recipe

paprika recipe "Spaghetti" --ingredients-only

Script: Check if a recipe exists

if paprika recipe "Lasagna" --json > /dev/null 2>&1; then
  echo "Recipe found!"
fi

View this week's meal plan

# Get meals for a specific date
paprika meals --date $(date +%Y-%m-%d)

API Client

This package also exports a TypeScript client for programmatic use:

import { PaprikaClient } from 'paprika-recipe-cli';

const client = new PaprikaClient({
  email: process.env.PAPRIKA_EMAIL,
  password: process.env.PAPRIKA_PASSWORD,
});

const recipes = await client.getAllRecipes();
const meals = await client.getMeals();
const groceries = await client.getGroceries();

Development

git clone https://github.com/mjrussell/paprika-recipe-cli
cd paprika-recipe-cli
npm install
npm run build
node dist/cli.js --help

License

MIT © Matt Russell

Disclaimer

This is an unofficial tool created by the community. Paprika Recipe Manager is a trademark of Hindsight Labs LLC. This project is not affiliated with, endorsed by, or connected to Hindsight Labs LLC in any way.

Requires a Paprika Recipe Manager account with cloud sync enabled.