Snippets Collections
The one thing people are sure of is that the history of finger limes is that their origin is from Northern New South Wales and Queensland. This is known for the unusual citrus, also known as Citrus australasica, which is native. For thousands of years, indigenous Australian communities, including the Bundjalung, Gumbainggir, Wakka Wakka, and Barunggam nations, have used the finger lime as bush food. They have eaten the fruit raw, added its acidic pearls to seafood, and used parts of the plant as medicine. 
const searchForm = document.querySelector("form");
2
const searchResultDiv = document.querySelector(".search-result");
3
const container = document.querySelector(".container");
4
let searchQuery = "";
5
const APP_ID = "Use Your Own App ID Here";
6
const APP_key = "Use Your Own App Key Here";
7
// console.log(container)
8
searchForm.addEventListener("submit", (e) => {
9
  e.preventDefault();
10
  searchQuery = e.target.querySelector("input").value;
11
  fetchAPI();
12
});
13
​
14
async function fetchAPI() {
15
  const baseURL = `https://api.edamam.com/search?q=${searchQuery}&app_id=${APP_ID}&app_key=${APP_key}&from=0&to=20`;
16
  const response = await fetch(baseURL);
star

Sun Oct 19 2025 11:05:09 GMT+0000 (Coordinated Universal Time) https://citroncaviarlb.com/history-of-finger-limes-from-indigenous-australian-bushfood-to-global-gourmet/

#finger #lime #citrus #red #recipe #caviar
star

Fri Jun 17 2022 18:42:45 GMT+0000 (Coordinated Universal Time) https://codepen.io/Web_Cifar/pen/oNxLYRY?editors

#js #api #food #recipe

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension