get-repo

Get the files in a repository on GitHub

Usage no npm install needed!

<script type="module">
  import getRepo from 'https://cdn.skypack.dev/get-repo';
</script>

README

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