1
My problem is the following is consuming the github api via javascript fetch, and I want to search inside my repositories, the ones that have a certain topic like "Javacript" or "Programming" the problem is that I haven’t found a way to do this using the git api.
That’s all I’ve got so far.
async function start()
{
const api = async () => {
const response = await fetch('https://api.github.com/users/LucasFernandoWeb/repos');
const data = await response.json();
return data;
}
const api_data = await api();
console.log(api_data);
}
// Carrega os cards
start();
Thanks for the help
– Lukas Takahashi