@dianmora/contributors
TypeScript icon, indicating that this package has built-in type declarations

5.0.0 • Public • Published

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

/@dianmora/contributors/

    Package Sidebar

    Install

    npm i @dianmora/contributors

    Weekly Downloads

    312

    Version

    5.0.0

    License

    MIT

    Unpacked Size

    29.9 kB

    Total Files

    10

    Last publish

    Collaborators

    • dianmorales