# github-stars **Repository Path**: mirrors_alexgorbatchev/github-stars ## Basic Information - **Project Name**: github-stars - **Description**: Returns the aggregate number of stars for a user/org or single repo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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);