Skip to content

satyawikananda/yummy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yummy 🥘 🍕 🦕

License: MIT

A simple wrapper themealdb.com API for Deno 🦕

How to use? 🤔

import {
    getRandomMeal, 
    getCategories, 
    getFilterByCat, 
    getMainIngerdient,
    getListArea,
    getListCategories,
    getListIngredient
} from "https://deno.land/x/yummy/mod.ts"

// Get data random meal
console.log(await getRandomMeal())

// Get data's of categories
console.log(await getCategories())

// Get data by filter of the specific category
console.log(await getFilterByCat("seafood"))

// Get data recipe 
console.log(await getMainIngerdient("chicken_breast"))

// Get data list available area
console.log(await getListArea())

// Get data list available category
console.log(await getListCategories())

// Get  data list available ingredient
console.log(await getListIngredient())

How to run it ? 🤔

deno run --allow-net ./example/index.ts

How to test it ? 🤔

deno test --allow-net ./test/test.ts

Author

@Satyawikananda ©2020