Unlimited access to GitHub API
Accessing to open source GitHub repository meta-data should be fast, easy, and straightforward. GitHub API is rate limited and requires an authentication token to increase limits. Even by using an API token, we need to share or generate it for each deployment and local development of apps and also deal with (increased) rate limits and deployment caching. GitHub REST API is also complex with (unnecessary) bigger payloads because of backward compatibility.
UNGH provides a simplified, cached, and anonymous layer to make GitHub API more enjoyable!
undefinedNote: This project is still under development and API might change.
/repos/{owner}/{name}GitHub repository information.
undefinedExample: https://ungh.cc/repos/unjs/h3
{
"repo": {
"id": 313641207,
"name": "h3",
"repo": "unjs/h3",
"description": "Minimal h(ttp) framework built for high performance and portability β‘οΈ",
"createdAt": "2020-11-17T14:15:44Z",
"updatedAt": "2022-11-05T21:38:43Z",
"pushedAt": "2022-11-06T06:48:23Z",
"stars": 1168,
"watchers": 1168,
"forks": 59,
"defaultBranch": "main"
}
}
/repos/{owner}/{name}/contributorsGet repository contributors.
undefinedExample: https://ungh.cc/repos/unjs/h3/contributors
{
"contributors": [
{
"id": 5158436,
"username": "pi0",
"contributions": 243
},
{
"id": 29139614,
"username": "renovate[bot]",
"contributions": 41
}
]
}
/repos/{owner}/{name}/files/{branch}Get repository files tree on specific branch.
undefinedExample: https://ungh.cc/repos/unjs/h3/files/main
{
"meta": {
"sha": "501f0c6e623ea827d47691046f3c7319f5ac4651"
},
"files": [
{
"path": "README.md",
"mode": "100644",
"sha": "4c2b9ce4bccd6e046cd71be1a8c5e53a62778858",
"size": 5782
}
]
}
/repos/{owner}/{name}/files/{branch}/{...path}Get file contents from a repository. If path ends with .md, an additional html field with rendered markup will be appended.
undefinedExample: https://ungh.cc/repos/unjs/h3/files/main/README.md
{
"meta": {
"url": "https://raw.githubusercontent.com/unjs/h3/main/README.md"
},
"file": {
"contents": "...",
"html": "..."
}
}
/repos/{owner}/{name}/readmeGet repository readme file on main branch (not cached)
undefinedExample: https://ungh.cc/repos/unjs/h3/readme
{
"html": "<p><a href=\"https://npmjs.com/package/h3\" rel=\"nofollow\"><img...",
"markdown": "[. Each item can be either {owner}/{org} to specify one repository or {owner}/* to specify all organization repositories.
undefinedExample: https://ungh.cc/stars/nuxt/nuxt.js+nuxt/framework
{
"totalStars": 51524,
"stars": {
"nuxt/nuxt.js": 41560,
"nuxt/framework": 9964
}
}
/users/{username}Find one github user by username.
undefinedExample: https://ungh.cc/users/pi0
{
"user": {
"id": 5158436,
"name": "Pooya Parsa",
"twitter": null,
"username": "pi0"
}
}
/users/{username}/reposGet user repositories.
undefinedExample: https://ungh.cc/users/pi0/repos
{
"repos": [
{
"id": 674019467,
"name": "h3-on-edge",
"description": "β‘οΈ Edge workers with straming powered by unjs/h3",
"repo": "pi0/h3-on-edge",
"stars": 51,
"pushedAt": "2024-01-07T16:54:46Z",
"createdAt": "2023-08-03T00:53:31Z",
"updatedAt": "2024-01-04T17:20:53Z",
"watchers": 51,
"forks": 0,
"defaultBranch": "main"
}
]
}
/users/find/{query}Find one github user by email or other query.
undefinedExample: https://ungh.cc/users/find/pooya@pi0.io
{
"user": {
"id": 5158436,
"name": "Pooya Parsa",
"twitter": null,
"username": "pi0"
}
}
corepack enable (use npm i -g corepack for Node.js < 16.10)pnpm installpnpm devMade with π
Published under MIT License.