Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsftp

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsftp - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

6

jsftp_test.js

@@ -20,6 +20,6 @@ /*

var FTPCredentials = {
host: "ftp.100procentjan.nl",
user: "sergi",
host: "localhost",
user: "",
port: 21,
pass: "hupholland1"
pass: ""
};

@@ -26,0 +26,0 @@

@@ -561,5 +561,10 @@ /*

onCmdWrite: function() {
var socket = self.dataConn.socket;
if (socket.writable)
socket.end(buffer);
if (self.dataConn) {
var socket = self.dataConn.socket;
if (socket.writable)
socket.end(buffer);
}
else {
console.log("FTP error: Couldn't retrieve PASV connection for command 'stor " + filePath + "'.");
}
},

@@ -566,0 +571,0 @@ pasvCallback: callback

{
"name": "jsftp",
"id": "jsftp",
"version": "0.3.3",
"version": "0.3.4",
"description": "A sane FTP client implementation for NodeJS",

@@ -6,0 +6,0 @@ "keywords": [ "ftp", "protocol", "files", "server", "client", "async" ],

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