Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wzr1337/npm.package.shallow.cloner

shallow clone all dependencies from a package.json - ignoring sub dependencies
https://github.com/wzr1337/npm.package.shallow.cloner

Last synced: 4 days ago
JSON representation

shallow clone all dependencies from a package.json - ignoring sub dependencies

Awesome Lists containing this project

README

        

# npm.package.shallow.cloner
shallow clone all dependencies from a package.json - ignoring sub dependencies

# use

```
npm run build && npm run clone -- -p /package.json -o ./tmp/
```

# Known Issues
## curl 56 SSLRead() return error -9806
This tool heavily uses concurrent, async git cloning.. Therefore increase your http git cache size to a reasonable size for your project:
```
$ git config --global http.postBuffer 16M
$ git config --global https.postBuffer 16M
```