hippa

2.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i hippa

Weekly Downloads

0

Version

2.0.0

License

MIT

Unpacked Size

4.62 kB

Total Files

6

Last publish

Collaborators

  • coderaiser