https://github.com/juliocesarscheidt/github-api-project
https://github.com/juliocesarscheidt/github-api-project
express github github-api graphql node-cache
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliocesarscheidt/github-api-project
- Owner: juliocesarscheidt
- Created: 2021-09-28T01:27:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-18T15:27:02.000Z (over 2 years ago)
- Last Synced: 2025-10-10T19:14:21.638Z (7 months ago)
- Topics: express, github, github-api, graphql, node-cache
- Language: JavaScript
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wrapper REST API for Github GraphQL API
## Up and Running
```bash
docker-compose build api
docker-compose up -d api
docker-compose logs -f --tail 50 api
```
## Try API
> List repositories
```bash
# repositories by owner
curl --silent -X GET \
--url 'http://localhost:3030/api/v1/repositories/'
# topics/tags by owner
curl --silent -X GET \
--url 'http://localhost:3030/api/v1/repositories//topics'
# languages by owner
curl --silent -X GET \
--url 'http://localhost:3030/api/v1/repositories//languages'
```