basic-ftp icon indicating copy to clipboard operation
basic-ftp copied to clipboard

FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript.

Results 21 basic-ftp issues
Sort by recently updated
recently updated
newest added

The progress tracker gives just the file name and not the path, so if we have sub folders with similarly named files we cannot track the percentage state of the...

See new API added in Node.js 11.10.0, [session event for TLS socket](https://nodejs.org/api/tls.html#tls_event_session). We use `getSession` to reuse the session negotiated by the control connection for all subsequent data connections. Apparently,...

**Describe the bug** When I download a file, except for very small files (less than 10ko), I got a timeout but the console show me a 226 code. Average of...

Some FTP Servers just abruptly end the data connection. This happens for example for the NLST command when given a wrong path (probably unintentionally). Currently this library closes the control...

**Describe the bug** Currently running `ensureDir` I only receive a `550 The system cannot find the file specified.` which from the CMD, but when running `MKD` it is already receiving...

Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...

dependencies

**Describe the bug** This is not a bug but rather a question related to working of download API. I have already checked https://github.com/patrickjuchli/basic-ftp/issues/58 and understand how can I use passThrough...

I have been looking into integrating compatibility for active FTP into your node. At the moment I am just going through the distributed source, making some minor adjustments to see...

Downloading a zip file to a stream. The stream pipeline then unzips and processes the data which takes 2-3 minutes. What I'm seeing is a successful connection and the zip...