Dealing with rate limiting APIs in NodeJS

So I need a way to run a function x amount of times in a given second, then wait until the next second to run the next set. I’m using the Yelp Fusion API to call a ‘search’ https://api.yelp.com/v3/search and then running a details query on each of the search results: https://api.yelp.com/v3/businesses/business_id. So the first… Read More Dealing with rate limiting APIs in NodeJS