1.0.0 • Published 9 years ago
git-downloader v1.0.0
git-downloader
A tool to download projects from a git repository
Have a problem? Come chat with us!
Installation
$ [sudo] npm install git-downloader --save
Examples
var gitDownloader = require('git-downloader');
var options = { source: 'test' };
// Downloads project from source to current working dir
gitDownloader(options)
.then(function() {
// Done!
});
options = {
source: 'test',
destination: 'dest'
};
// Downloads project from source to destination
gitDownloader(options)
.then(function() {
// Done!
});
Run Tests
$ npm test
License
1.0.0
9 years ago