hippa
v2.0.0
Published
read file or directory contents from github repo with help of node
Readme
Hippa
Read file or directory contents from github repo with help of node.
Install
npm i hippa -gHow to use?
Global
$ hippa
Usage: hippa [owner/repo/path]
$ hippa coderaiser/node-hippa/README.mdLocal
npm i hippa --saveExample
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
