0.1.1 • Published 9 years ago

node-gh-repo-puller v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Simple Github repository puller for Node

Installation

npm install node-gh-repo-puller

Usage

var puller = require('node-gh-repo-puller');

puller({
    user: "miskun",
    repo: "node-gh-repo-puller",
    dir: "sample",
    target: "pulled-from-github"
}, function (err, result) {
	if(!err){
	    console.log("Done! Check 'pulled-from-github' directory");
	} else {
    	console.log(err);
	}
});

License

MIT