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

kato-ai-recipe-generator

v1.4.1

Published

A standalone package for generating recipes and images using AI

Readme

AI Recipe Generator

This package provides functionality for generating recipes and images using AI.

Installation

npm install kato-ai-recipe-generator

Usage

Here's a basic example of how to use the package:

import { init, generate_recipe, generate_recipe_list, generate_image } from 'kato-ai-recipe-generator';

// Initialize the module
await init;

// Generate a recipe
const apiToken = 'your-openai-api-token';
const ingredients = 'lamb,potatoes,tomato paste,hawaij spice mix';
const cuisineType = 'Arabic';
const language = 'Arabic';
const recipe = await generate_recipe(apiToken, ingredients, cuisineType, language);
console.log(recipe);

// Generate multiple recipes
const recipeCount = 3;
const recipeList = await generate_recipe_list(apiToken, ingredients, cuisineType, recipeCount, language);
console.log(recipeList);

// Generate an image
const prompt = 'Arabian Buttered Eggs with Mint and Lemon';
const image = await generate_image(apiToken, prompt);
console.log(image);

API Reference

init()

Initializes the module. Must be called before using other functions.

generate_recipe(apiToken, ingredients, cuisineType, language)

Generates a recipe based on the given ingredients, language and cuisine type.

  • apiToken: Your OpenAI API token for authentication.
  • ingredients: A comma separated string of ingredients.
  • cuisineType: The type of cuisine. (default: Arabic)
  • language: The language to show the recipe (default: English)

Returns a Promise that resolves to the generated recipe.

generate_recipe_list(apiToken, ingredients, cuisineType, count, language)

Generates a list of recipes based on the given ingredients, count, language and cuisine type.

  • apiToken: Your OpenAI API token for authentication.
  • ingredients: A comma separated string of ingredients.
  • cuisineType: The type of cuisine. (default: Arabic)
  • count: The total recipes to generate. (min: 1, max: 8, default: 8)
  • language: The language to show the recipe (default: English)

Returns a Promise that resolves to a list of generated recipes.

generate_image(apiToken, prompt)

Generates an image based on the given prompt.

  • apiToken: Your OpenAI API token for authentication.
  • prompt: A text description of the image to generate.

Returns a Promise that resolves to the generated image data.

Response Format

Recipe Response

{
  "success": true,
  "data": "JSON string of the recipe",
  "parsed_json": {
    "recipe_name": "Recipe Name",
    "prep_time": 20,
    "cooking_time": 60,
    "servings": 4,
    "ingredients": [
      {
        "name": "Ingredient Name",
        "quantity": "Quantity",
        "preparation": "Preparation Instructions"
      }
    ],
    "instructions": [
      "Step 1 instruction",
      "Step 2 instruction"
    ]
  }
}

Recipe List Response

{
  "success": true,
  "data": "JSON string of the recipes",
  "parsed_json": {
    "recipes": [
      {
        "recipe_name": "Recipe Name 1",
        "prep_time": 20,
        "cooking_time": 60,
        "servings": 4,
        "ingredients": [...],
        "instructions": [...]
      },
      {
        "recipe_name": "Recipe Name 2",
        "prep_time": 15,
        "cooking_time": 45,
        "servings": 2,
        "ingredients": [...],
        "instructions": [...]
      }
    ]
  }
}

Image Response

{
  "success": true,
  "data": {
    "b64_json": "base64-encoded image data",
    "revised_prompt": "The revised prompt used for generation"
  }
}

Error Response

{
  "success": false,
  "error": "Error message"
}