1.0.3 • Published 7 years ago

find-devs-by-project v1.0.3

Weekly downloads
2
License
-
Repository
github
Last release
7 years ago

Find Developers by Projects

Description

Do you ever want to find local developers who contribute to frameworks that you use in your projects? We require candidates to know certain frameworks or libraries. This module allows you to find all the contributors of these projects from the specified region. It is logical to look for developers among their contributors. This module allows you to find all the contributors of these projects from the specified region.

Parameters

NameTypeDescription
authenticateobjectGitHub credentials
reposArray, StringRepositories for find
locationsArray, StringLocations for find

Usage

const find = require("find-devs-by-project");

find({
	authenticate: {
		type: "token",
		token: "<your token>"
	},
	repos: ["dojo/dojo", "dojo/dijit", "dojo/dojox", "dojo/util"],
	locations: ["Russia", "Moscow"]
}).then(results => {
	results.forEach(repo => {
	    repo.forEach(user => {
	        console.log(user.login, user.html_url, "\n");
        });
    });
});