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

https://github.com/narazaka/joindl.js

join download
https://github.com/narazaka/joindl.js

download splitter

Last synced: about 2 months ago
JSON representation

join download

Awesome Lists containing this project

README

          

呼び出し方: joindl("./a.zip", 2)

これによって、

- ./a.zip.00
- ./a.zip.01
- ./a.zip.02

がダウンロード、結合されa.zipとなる。

splitコマンド等でファイルを分割すること。

例:
```javascript

window.onload = function(){
joindl("debug.log", 3);
};

```