New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

multi-cloner

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi-cloner

A module that clones multiple git repositories in a specific destination

latest
Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
6
-73.91%
Maintainers
1
Weekly downloads
 
Created
Source

Multi Cloner

A utility that clones multiple git repositories.

Status

<tbody>
    <tr>
        <td><a href="https://travis-ci.org/fmatar/multi-cloner"><img src="https://travis-ci.org/fmatar/multi-cloner.svg?branch=master" /></a></td>
        <td><a href="https://david-dm.org/fmatar/multi-cloner"><img src="https://david-dm.org/fmatar/multi-cloner.svg" /></a></td>
        <td><a href="https://coveralls.io/github/fmatar/multi-cloner"><img src="https://coveralls.io/repos/fmatar/multi-cloner/badge.svg?branch=master" /></a></td>
    </tr>
</tbody>
Build StatusDependenciesCoverage

Usage

'use strict';

const MultiCloner = require('multi-cloner');

let config = {
  destination: '/tmp/tools', //path where all the repositories will be cloned
  repositories: [ //individual repositories to clone
    'https://github.com/fmatar/cassandra-installer.git',
    'https://github.com/fmatar/cloner.git'
  ]
};
const cloner = new MultiCloner(config);

/* Install the repositories specified in the configuration in the specified destination */
cloner.install((err, data) => {
  console.log(err, data);
});

/* Cleanup */
cloner.uninstall();

This module might not work on Windows since NodeGit is not guaranteed to work on Windows.

FAQs

Package last updated on 09 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts