A tool to download projects from a git repository
| Linux | OSX | Windows | Coverage | Dependencies | DevDependencies |
|---|---|---|---|---|---|
|
|
|
|
|
|
|
$ [sudo] npm install git-downloader --savevar 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!
});$ npm test