Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshcanhelp/repos-to-csv
Get organization repos and output as CSV or HTML
https://github.com/joshcanhelp/repos-to-csv
Last synced: 3 months ago
JSON representation
Get organization repos and output as CSV or HTML
- Host: GitHub
- URL: https://github.com/joshcanhelp/repos-to-csv
- Owner: joshcanhelp
- Created: 2018-07-16T20:35:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T11:54:45.000Z (almost 2 years ago)
- Last Synced: 2024-10-17T14:54:55.301Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 178 KB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Repos to CSV
Get all public, source, non-archived repos from a GitHub organization and display as CSV or HTML.
## Installation
Clone, install, configure, and go!
```bash
git clone [email protected]:joshcanhelp/repos-to-csv.git
cd repos-to-csv
cp example.env .env
vim .env
```Add your [personal access token](https://github.com/settings/tokens) or username and password to `.env` to increase your API limits (not required but greatly helps if you're troubleshooting).
Now, install:
```bash
npm install
node index.js
```Open your browser and go to [localhost:5000?format=html&repos=github-tools](http://localhost:5000/?format=html&repos=github-tools) and you should see all the public, source, non-archived repos from [Tools for GitHub](https://github.com/github-tools?utf8=%E2%9C%93&q=stars%3A%3E1&type=source&language=) with more than one star.
![Output example](screenshot-01.png)
Options:
- Change `format` to `csv` to get a CSV output you can save and open in Excel, Google Docs, or another editor.
- Add multiple repos, separated by a comma, to see multiple orgs together.
- Add a `stars` parameter to set the minimum number of stars (default is `1`)
- Add a `topic` parameter to filter by topics.