west-african-dishes
v2.1.0
Published
A comprehensive list of dishes from Ghana, Nigeria, and Liberia, including a curated 'Popular' filter with top 30 dishes.
Maintainers
Readme
West African Dishes (v2.1)
Includes both full datasets (600+ items) and curated Popular lists (Top 30 per country) optimized for background image search.
Usage
const { getDishes } = require('west-african-dishes');
// 1. Get ONLY the top 30 hits (Use this for your Image Search to save API quota!)
const popularNaija = getDishes('nigeria', true);
console.log(popularNaija); // ['Jollof Rice', 'Suya', ...]
// 2. Get the full comprehensive list
const allNaija = getDishes('nigeria', false);