react-native-community / directory

A searchable and filterable directory of React Native libraries.

Home Page:https://reactnative.directory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fetching Github data often leads to being throttled by Github

brentvatne opened this issue Β· comments

Worked around this temporarily with:

const fetchGithubData = async data => {
  await new Promise(resolve => setTimeout(resolve, Math.random() * 30000));

πŸ˜…

This worked better: 0c8c38b