6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
export async function useGithubStars() {
|
|
const res = await fetch("https://api.github.com/repos/mendableai/firecrawl");
|
|
const data = await res.json();
|
|
return data.stargazers_count;
|
|
}
|