A modern recipe management application built with React and TypeScript. Browse, search, and organize your favorite recipes.
https://nikosxenakis.github.io/recipes/
- Node.js 22+
- Yarn package manager
# Install all dependencies
cd recipe-builder && yarn install
cd ../ui && yarn install# 1. Build recipe data (parses MD/CSV/JSON → dist/ → ui/public/recipes.json)
cd recipe-builder && npm run build
# 2. Start development server
cd ../ui && yarn start
# 3. Build for production
cd ../ui && yarn buildThe npm run build command in recipe-builder runs three steps:
build:users- Builds user database fromdata/users/users.jsonbuild:recipes- Parses all source files (MD/CSV/JSON) fromdata/recipes/intodist/export- Combines alldist/JSONs intoui/public/recipes.json
Use our Recipe Submission Form to submit new recipes.
Note: Submitted recipes are reviewed and added regularly to the collection.
Add recipe files directly to recipe-builder/data/recipes/ in any format:
Markdown (.md), JSON (.json), or CSV (.csv)
Example JSON format:
[
{
"id": "unique-id",
"title": "Recipe Name",
"category": "Category",
"creator": "Recipe Author",
"createdAt": "2025-11-15T10:00:00Z",
"servings": "4 Portionen",
"duration": "30 Minuten",
"ingredients": [
{
"items": ["ingredient 1", "ingredient 2"]
}
],
"instructions": ["step 1", "step 2"]
}
]- Search & Filter: Find recipes by name, ingredients, category, cooking time, or creator
- Responsive Design: Works on desktop, tablet, and mobile devices
- Recipe Sharing: Copy links to share specific recipes
- Dark Mode: Toggle between light and dark themes
- User Profiles: See who created each recipe with photos and avatars
- Recipe Photos: Display photos for recipes when available
- Recipe Importer: Import recipes from Google Forms CSV exports
- Creator Filter: Filter recipes by their creator
Offer sorting Add recipe url Keep screen awake option for mobile Expand recipe option Create new logo Add ingredient filtering Split portion and ingredient Add recipe rating