cookbook.js
v1.0.0
Published
📦 A library created with the main objective of being simple and intuitive, capable of returning a wide range of recipes thanks to the content of tudoreceitas.com.
Maintainers
Readme
npm install cookbook.jsconst cookbook = require('cookbook.js');
// Retrieve a recipe
cookbook('chocolate cake', { format: true }).then(data => console.log(data));{
"title": "String",
"description": "String",
"imageUrl": "String",
"category": { "name": "String", "link": "String" },
"url": "String",
"author": { "name": "String", "avatarUrl": "String" },
"published_at": "String",
"review": { "stars": "Number", "votes": "Number" },
"comments": "Array",
"duration": "String",
"dificulty": "String",
"ingredients": "Array",
"instructions": "Array",
"similar": "Array",
"responseTime": "Number"
}