@gh-conf/gh-conf-read

1.1.3 • Public • Published

gh-conf-read

Build Status Github Repo Size Contributors Commit NPM Version

It reads the github config file and returns it contents. It needs respository path as input to read the config.

Give us a if you like our work ❤️

Buy Me A Coffee Become a Patron!

Please consider donating, if you like my work

Install

$ npm install @gh-conf/gh-conf-read

Usage

const { readConf } = require('@gh-conf/gh-conf-read');

(async () => {
  try {
    const configContent = await readConf('./gh-conf-read');
    console.log(configContent);
    /**
     * [core]
     *     repositoryformatversion = 0
     *     filemode = true
     *     bare = false
     *     logallrefupdates = true
     * [remote "origin"]
     *     url = git@github.com:gh-conf/gh-conf-read
     *     fetch = +refs/heads/*:refs/remotes/origin/*
     * [branch "master"]
     *   remote = origin
     *   merge = refs/heads/master
     * [user]
     *     name = Arshad Kazmi
     *     email = arshadkazmi42@gmail.com
     **/
  } catch (error) {
    console.log(error);
  }
})();

Contributing

Interested in contributing to this project? You can log any issues or suggestion related to this library here

Read our contributing guide on getting started with contributing to the codebase

Contributors

Thank you to all the contributors who have helped us in making this project better 🙌

Package Sidebar

Install

npm i @gh-conf/gh-conf-read

Weekly Downloads

4

Version

1.1.3

License

MIT

Unpacked Size

5.79 kB

Total Files

5

Last publish

Collaborators

  • arshadkazmi42
  • bluitel