gh-repeat

1.0.11 • Public • Published

gh-repeat

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

Repetitive actions on multiple GitHub repositories.

☁️ Installation

# Using npm 
npm install --save gh-repeat
 
# Using yarn 
yarn add gh-repeat

📋 Example

const ghRepeat = require("gh-repeat");
 
ghRepeat("ionicabizau", cRepo => {
    return {
        url: `repos/${cRepo.full_name}/languages`
    }
}, "an optional token", (err, data) => {
    /* when everything is done */
    console.log(
        err
     || data.map(
            c => c.repo.full_name + "" + Object.keys(c.data).join("")
        ).join("\n")
    );
    // =>
    // IonicaBizau/3x3-equation-solver: JavaScript
    // IonicaBizau/add-subtract-date: JavaScript
    // ...
    // IonicaBizau/before-leaving-me.js: CSS, JavaScript, HTML
    // ...
    // IonicaBizau/gif-recorder: JavaScript, HTML, CSS, Shell
    // ...
    // IonicaBizau/youtube-topmost: JavaScript, CSS, HTML, Shell
});

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

📝 Documentation

ghRepeat(selector, doWhat, token, cb)

Run a repetitive action on multiple GitHub repositories.

Params

  • String selector: If a GitHub owner (user or organization) is provided, all accesible repositories will be matched. If a repository full name is provided, only that specific repository will be matched.
  • Function doWhat: A function which should return an object cocontaining:
  • url (String): The GitHub API url.
  • options (Object): The options interpreted by gh.js.
  • String token: The GitHub token.
  • Function cb: The callback function.

Return

  • EventEmitter An EventEmitter instance emitting the following events:
  • repo-error (err, repo): Emitted if the request failed for a specific repository.
  • repo-success (data, repo): Emitted the request is successful.
  • repo-progress (err, data): Emitted running the request to a repository (if it was a success, the error will be null).
  • done (err, data): Emitted after all the requests are executed.

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list. ✨

  • fork-me
  • gh-fork
  • gh-destroy

📜 License

MIT © Ionică Bizău

Package Sidebar

Install

npm i gh-repeat

Weekly Downloads

0

Version

1.0.11

License

MIT

Unpacked Size

10 kB

Total Files

4

Last publish

Collaborators

  • ionicabizau