2.0.0 • Published 6 years ago

hippa v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Hippa

Read file or directory contents from github repo with help of node.

Install

npm i hippa -g

How to use?

Global

$ hippa
Usage: hippa [owner/repo/path]

$ hippa coderaiser/node-hippa/README.md

Local

npm i hippa --save

Example

const hippa = require('hippa');
const path = 'coderaiser/node-hippa/package.json';

hippa(path, (error, data) => {
    if (error)
        return console.error(error.message);
    
    console.log(data);
});

License

MIT

2.0.0

6 years ago

1.0.1

6 years ago

1.0.0

9 years ago