Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wzr1337/npm.package.shallow.cloner
- Owner: wzr1337
- License: mit
- Created: 2018-05-22T11:36:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-07T08:40:15.000Z (over 6 years ago)
- Last Synced: 2024-11-10T18:35:18.061Z (2 months ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```