git-downloader

1.0.0 • Public • Published

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

/git-downloader/

    Package Sidebar

    Install

    npm i git-downloader

    Weekly Downloads

    6

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • eladbezalel
    • omrilitov
    • noamokman
    • amirschl