atinux / node-ftps

FTP, FTPS and SFTP client for node.js, mainly a lftp wrapper.
MIT License
202 stars 57 forks source link

Can this module upload a buffer to an FTP server without first writing it to disk? #41

Closed jazoom closed 7 years ago

atinux commented 7 years ago

Sorry @jazoom it's not possible since node-ftps spawn the lftp command under the hood.

You can still write the file in the tmp folder (use os.tmpdir() from node.js)

jazoom commented 7 years ago

Thank you