1.0.0 • Published 9 years ago

git-downloader v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

git-downloader

A tool to download projects from a git repository

Have a problem? Come chat with us!

Join the chat at https://gitter.im/nachos/git-downloader

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

MIT