Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

git-clone-promises

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-clone-promises

Promise wrapper for git-clone to clone repository via shell command

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

git-clone-promises

Promise version of jaz303's git-clone npm module. Clones a git repository via shell command and with promises!

Installation

Install:

$ npm install git-clone-promises

Require:

const { clone, cloneCallback } = require('git-clone-promises');

API

clone(repo, targetPath, [options=undefined])

Clones repo to targetPath, returning promise

Supported options:

  • git: path to git binary; default: git (optional).
  • shallow: when true, clone with depth 1 (optional).
  • checkout: revision/branch/tag to check out (optional).
  • remove: removes targetPath if already existing (optional).

Example

Fullfills if done with no return value Rejects if folder already exists and not empty and no remove option or else failed to remove folder:

const { clone } = require('git-clone-promises');
clone('https://github.com/TheRolfFR/git-clone-promises.git', './test-clone', {
  remove: true
}).then(() => {
  console.log('complete!')
}).catch((err) => {
  console.error(err)
})

Legacy example

I left callback version with my remove option addition:

const { cloneCallback } = require('git-clone-promises');
cloneCallback('https://github.com/TheRolfFR/git-clone-promises.git', './test-clone', {
  remove: true
}, function (err) {
  if(err)
    console.error(err)
  console.log('finished!')
})

© 2021 Le Vaguerès Yann

Twitter : @TheRolfFR
Website : therolf.fr
GitHub : @TheRolfFR

Released under the ISC license.

Keywords

FAQs

Package last updated on 29 Mar 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc