0.1.0 • Published 10 years ago

git-get-file v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

git-get-file

Returns a readable stream with the contents of file (from a git repo) at the specific revision.

Usage

streamFile(repoPath, { rev: <REVISION>, file: <FILENAME> })

Example:

var streamFile = require('git-get-file');
var path = require('path');
var repoPath = path.resolve(process.env.REPO || (__dirname + '/.git'));
var rev = process.env.REV || 'master';
var file = process.env.FILE || 'package.json';

streamFile(repoPath, {
  rev: rev,
  file: file
}).on('error', function(err) {
  throw err;
}).on('end', function() {
  console.log('\n------ THE END ------');
}).pipe(process.stdout);

Tests

npm test

License

MIT