An open API service indexing awesome lists of open source software.

https://github.com/dianmorales/contributors

Retrieve a list of contributors and a number of total contributions made to the differents repositories of the selected Organization
https://github.com/dianmorales/contributors

github

Last synced: about 2 months ago
JSON representation

Retrieve a list of contributors and a number of total contributions made to the differents repositories of the selected Organization

Awesome Lists containing this project

README

          

## Contributors

By @dianmorales

Retrieve a list of contributors and a number of total contributions made to the differents repositories of the selected Organization
import contributors from '@dianmora/contributors';

### Example

```
import fs from 'fs/promises';
import path from 'path';

const token = process.env.TOKEN;
const contributors = require('@dianmora/contributors');
const excludebots = ['foo'];

(async () => {
try {
const result = await contributors({
token: token,
organization: 'org',
excludebots,
allowFork: false,
allowPrivateRepo: false,
});
await fs.writeFile('./foo.json', JSON.stringify(result, null, 4));
} catch (err) {
console.error('error on update', err);
process.exit(1);
}
})();
```

MIT