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