All Projects → stretchr → github-stars

stretchr / github-stars

Licence: other
Returns the aggregate number of stars for a user/org or single repo

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Github Stars

Returns a count of stars for any user or a single repo

Asynchronous

//user or org
githubStars("stretchr", function(stars) {
	console.log("Stars: " + stars);
});

//individual repo
githubStars("stretchr/sdk-js", function(stars) {
	console.log("Stars for SDK-JS: " + stars);
});

Synchronous

You can also perform requests synchronously if you'd prefer

var stars = githubStars("stretchr");
console.log("Stars: " + stars);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].