npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

get-repo

1.0.0

@forbeslindesay

npmHomeRepoSnykSocket
Downloads:166
$ npm install get-repo
DailyWeeklyMonthlyYearly

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