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

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i hippa

    Weekly Downloads

    7

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    4.62 kB

    Total Files

    6

    Last publish

    Collaborators

    • coderaiser