File size: 644 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
export async function fetchProjects(): Promise<
Array<{ name: string; full_name: string }>
> {
console.info('Fetching projects')
const response = await fetch(
`https://api.github.com/users/TanStack/repos?sort=updated`,
)
await new Promise((r) => setTimeout(r, 1000))
return await response.json()
}
export async function fetchProject(id: string): Promise<{
forks_count: number
stargazers_count: number
watchers_count: number
}> {
console.info('Fetching project:', id)
const response = await fetch(`https://api.github.com/repos/${id}`)
await new Promise((r) => setTimeout(r, 1000))
return await response.json()
}
|