kbjr / node-git-repos

:seat: Find all the git repositories in a specified directory, recursively.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

git-repos

Support me on Patreon Buy me a book PayPal Version Downloads

Find all the git repositories in a specified directory, recursively.

☁️ Installation

$ npm i --save git-repos

📋 Example

// Dependencies
var GitRepos = require("git-repos");

// Find all the git repos from home
GitRepos("~/", function (err, dir, stat) {
    if (err) { return console.log(err); }
    console.log(dir);
});

❓ 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 from me, you can use Codementor. 🚀

📝 Documentation

GitRepos(path, callback)

Finds the git repositories paths in the provided path.

Params

  • String path: The path where to search recursively the git repositories.
  • Function callback: The callback function.

Return

  • EventEmitter The FindIt event emitter.

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

  • 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. ✨

  • git-stats-importer—Imports your commits from a repository into git-stats history.
  • git-unsaved—Scan your projects directory for dirty git repositories.

📜 License

MIT © Ionică Bizău

About

:seat: Find all the git repositories in a specified directory, recursively.

License:MIT License


Languages

Language:JavaScript 100.0%