New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

basic-ftp

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basic-ftp - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

4

CHANGELOG.md
# Changelog
## 2.5.1
- Mention DOS-style directory listing support in README.
## 2.5.0

@@ -4,0 +8,0 @@

2

package.json
{
"name": "basic-ftp",
"version": "2.5.0",
"version": "2.5.1",
"description": "FTP/FTPS client library",

@@ -5,0 +5,0 @@ "main": "./lib/ftp",

@@ -108,3 +108,3 @@ # Basic FTP

List files and directories in the current working directory. Currently, this library only supports Unix-style directory listings.
List files and directories in the current working directory. Currently, this library only supports Unix- and DOS-style directory listings.

@@ -147,3 +147,3 @@ `upload(readableStream, remoteFilename)`

You can provide a custom parser to parse directory listing data, for example to support the DOS format. This library only supports the Unix format for now. Parsing these list responses is a central part of every FTP client because there is no standard that all servers adhere to. The signature of the function is `(rawList: string) => FileInfo[]`. `FileInfo` is also exported by the library.
You can provide a custom parser to parse directory listing data, for example to support the DOS format. This library only supports the Unix and DOS formats for now. Parsing these list responses is a central part of every FTP client because there is no standard that all servers adhere to. The signature of the function is `(rawList: string) => FileInfo[]`. `FileInfo` is also exported by the library.

@@ -150,0 +150,0 @@ ## Extend

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc