This plugin renders the activity of github users as a list to a given element. It makes use of the GitHub API v3.
$("#gh-activity").githubActivityFor("username", {
'limit': 10, // limit number of event, default: 30 (max)
'wrap': function(item) { // post process item element, default: identity
return item
}
})
see https://developer.github.com/v3/activity/events/types
- CreateEvent
- FollowEvent
- PushEvent
- WatchEvent
- IssueCommentEvent
- IssuesEvent
- CommitCommentEvent
- PullRequestEvent
- DeleteEvent
- ForkEvent
- ReleaseEvent
- GollumEvent
- MemberEvent
- PublicEvent
- PullRequestReviewCommentEvent
- TeamAddEvent
- additional options to the github-activity function
- define custom renderers
- implement remaining events
- support for detailed events
- finish unit tests implementation