Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mlaccetti/pget
- Owner: mlaccetti
- License: gpl-3.0
- Created: 2012-10-08T04:03:54.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-08T15:10:38.000Z (about 12 years ago)
- Last Synced: 2024-10-12T10:25:44.941Z (about 1 month ago)
- Language: JavaScript
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
});
```