Skip to content

A small node utility that grabs a GitHub repo and downloads it into a directory.

Notifications You must be signed in to change notification settings

RallyApps/fetch-github-repo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install

Build Status

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

About

A small node utility that grabs a GitHub repo and downloads it into a directory.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%