Question

I have lots of repos on GitHub which I starred for later use. Is there any tool that can organize a collection for stargazers so they can browse what they had starred? For example, find which components I have starred for iOS animations.

Was it helpful?

Solution

Here's an attempt I just came across: Gitrep

OTHER TIPS

Since the starred API doesn't offer any filter, that means you will have to filter the JSON response.

Something like:

$.each(data.data, function(key, val) {
  if (val.language == "ios") {
    $.each(val.payload.commits, function(key2, val2) {
      list.append('<li id="' + val.name + '"><a href="' + val.html_url + '">' + val.full_name + '</a></li>');
    });
  }
});

Try OhMyStar. It is a good app for organise Github stars and see others' stars.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top