fetch-github-repo
v0.2.2
Published
A small node utility that grabs a GitHub repo and downloads it into a directory.
Downloads
8
Readme
Install
npm install fetch-github-repo
API
JavaScript
var FetchGithubRepo, callback;
FetchGithubRepo = require("fetch-github-repo");
callback = function(err) {};
FetchGithubRepo.download({
organization: 'ferentchak',
repo: "ferentchak.github.com",
path: "."
}, callback);
Coffee
FetchGithubRepo = require "fetch-github-repo"
callback = (err)->
FetchGithubRepo.download
organization:'ferentchak'
repo : "ferentchak.github.com",
path: "."
callback
Run Tests
To run the tests: npm test