Last active
February 10, 2021 13:12
-
-
Save rw3iss/4b6f15c95c61ca62f36537b6a3a13851 to your computer and use it in GitHub Desktop.
Load Github Stars for Repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let url = 'https://api.github.com/repos/rw3iss/schemedream'; | |
function loadGithubStarCount(url) { | |
const self = this; | |
fetch(url) | |
.then(r => r.json()) | |
.then(r => { | |
self.setState({ | |
githubStars: (r as any).stargazers_count | |
}) | |
}); | |
} | |
loadGithubStarCount(url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment