1.0.0 • Published 9 years ago

get-repo v1.0.0

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

get-repo

Get the files in a repository on GitHub

Build Status Dependency Status NPM version

Installation

npm install get-repo

Usage

var fs = require('fs');
var getRepo = require('get-repo');

getRepo('jadejs', 'jade-lexer', {cache: testCache}).on('data', function (entry) {
  console.log(entry.type + ': ' + entry.path);
  if (entry.type === 'Directory') {
    fs.mkdirSync(__dirname + '/jade-lexer' + entry.path);
  }
  if (entry.type === 'File') {
    fs.writeFileSync(__dirname + '/jade-lexer' + entry.path, entry.body);
  }
}).on('end', function () {
  console.log('done');
});

License

MIT