Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 676 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 676 Bytes

Install

Build Status

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