On Jul 30, 11:20 am, carlton <[email protected]> wrote: > I may also give this a chance https://github.com/sergi/jsftpas I tried it > a while ago only to get error "FTP is not defined" which was odd as the > module seems to be required without an error
jsftp is plain FTP module, not SFTP. On Aug 1, 8:37 pm, rhasson <[email protected]> wrote: > In all honesty this is a hacky way of building an FTP service. Ideally > you'd build a TCP server and properly handle FTP commands but with a > cleaner interface for your application. If you use this .spawn way you > need to manage state (which commands were issued, did they complete > successfully or failed, what data was sent, etc.) and passing the complete > data back to the application. SFTP is a totally different beast (it uses SSH) than just plain FTP, so there's a lot more work involved if you plan to go the non-child process route. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
