Files
firecrawl/examples/roastmywebsite/src/app/hooks/useGithubStars.ts
T
2024-06-02 20:40:19 -07:00

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;
}