Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mlaccetti/pget

segmented (parallel) FTP client for node.js
https://github.com/mlaccetti/pget

Last synced: 5 days ago
JSON representation

segmented (parallel) FTP client for node.js

Awesome Lists containing this project

README

        

### pget - segmented FTP client

** note **

Please note that this library depends on my current fork of node-ftp,
available at https://github.com/mlaccetti/node-ftp. If my pull request is yanked, I'll update accordingly.

###### usage
```javascript
var pget = require('pget');
pget.pget('server', port, 'username', 'password', 'remote_file', 'local_file', num_segments, function (e) {
if (e) {
console.error("Could not download file using pget. %s", e.message);
throw e;
}
});
```