Frontend
Frontend API Interaction – script.js
UI Structure and Styling – index.html & style.css
function sendQuery() {
const coin = document.getElementById('coin').value;
const query = document.getElementById('query').value;
...
fetch('/query', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ coin, query })
})
Component
Recommended reference Link
Last updated