Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varshil-shah/pinned-github-repos
Get all pinned github repositories
https://github.com/varshil-shah/pinned-github-repos
functions github nodejs serverless
Last synced: about 14 hours ago
JSON representation
Get all pinned github repositories
- Host: GitHub
- URL: https://github.com/varshil-shah/pinned-github-repos
- Owner: varshil-shah
- Created: 2024-07-18T17:44:09.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-19T05:33:58.000Z (6 months ago)
- Last Synced: 2024-07-19T13:10:06.856Z (6 months ago)
- Topics: functions, github, nodejs, serverless
- Language: JavaScript
- Homepage: https://zu6jm2s7ba.execute-api.us-east-1.amazonaws.com/dev/user/varshil-shah
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Get pinned github repositories
The projects in build using NodeJS and AWS Serverless Framework. It's a simple API that fetches the pinned repositories of a user from Github.
Make a request on this route with the username of the user you want to get the pinned repositories.
```plaintext
https://zu6jm2s7ba.execute-api.us-east-1.amazonaws.com/dev/user/{USERNAME}
```The following is the response format:
```json
{
"status": "success",
"results": 6,
"data": [
{
"name": "",
"description": "",
"repositoryLink": "",
"stars": 1,
"forkCount": 1,
"projectLink": "",
"githubBannerImage": "",
"primaryLanguage": {
"name": "JavaScript",
"color": "#f1e05a"
}
}
]
}
```