Skip to content

Latest commit

 

History

History
77 lines (64 loc) · 2.08 KB

README.md

File metadata and controls

77 lines (64 loc) · 2.08 KB

git-downloader

A tool to download projects from a git repository

Linux OSX Windows Coverage Dependencies DevDependencies
Coverage Status

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