# find-devs-by-project

> Script for find developers on GitHub by project

Latest version **1.0.3** (published 2017-10-27) · 0 weekly downloads

## Install

```sh
npm install find-devs-by-project
pnpm add find-devs-by-project
yarn add find-devs-by-project
bun add find-devs-by-project
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2017-10-27 |
| First published | 2017-10-27 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Evgeny Uspenskiy |
| Maintainers | buran |

## Links

- npm: https://www.npmjs.com/package/find-devs-by-project
- Repository: https://github.com/burashka/find-devs-by-project
- Issues: https://github.com/burashka/find-devs-by-project/issues
- npm.io page: https://npm.io/package/find-devs-by-project

## Dependencies (1)

- [github](https://npm.io/package/github.md) ^9.2.0

## Recent versions

- 1.0.3 (latest) — 2017-10-27
- 1.0.2 — 2017-10-27
- 1.0.1 — 2017-10-27

## README

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
----------

| Name 			| Type 			| Description 			|
| ------------- | ------------- | ---- 					|
| authenticate 	| object 		| GitHub credentials 	|
| repos 		| Array, String | Repositories for find |
| locations 	| Array, String | Locations for find 	|

Usage
-----

```javascript
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");
        });
    });
});
```

---
_Source: https://npm.io/package/find-devs-by-project · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
