Skip to content

Instantly share code, notes, and snippets.

View kukicado's full-sized avatar
💯

Ado Kukic kukicado

💯
View GitHub Profile
@jerdog
jerdog / github-org-collaborators.js
Last active September 5, 2018 17:18
File to query the GitHub API for all contributors in an organization by each repo in that organization. Uses Webtask.io to run, courtesy of @kukicado.
// must replace:
// {YOUR-ACCESS-TOKEN} with your GitHub API access token
// {YOUR-ORG-NAME} with the GitHub organization to query
// Courtesy of @kukicado
// Running via Webtask.io
let express = require('express');
let Webtask = require('webtask-tools');
let axios = require('axios');