simple-ftpd
simple-ftpd copied to clipboard
a simple ftp server
When using Firefox to access ftp://localhost:1337/, the library throws the above error. The actual value of `dataEncoding` is `binary`. When I comment the check out, `LIST` works okay anyway. It's...
Since this project doesn't seem to be very active anymore, maybe it makes sense to look for additional maintainers in the community?
Looking for something like: ``` session.on('pass', (username, password, cb) => { if (username === 'admin' && password === 'adminpw') { session.readOnly = false; cb(null, 'Welcome admin') } else { session.close();...
OS: Ubuntu 18.04 Node: v8.9.1 NPM: 5.8.0 Steps to reproduce: ```sh npm install -g simple-ftpd ftp-server . ``` Error (user path redacted): ``` module.js:538 throw err; ^ Error: Cannot find...
I need to process uploaded files, so a writeCompleted event or the possibility to put a custom callback into the callback of the write event would be pretty dope :)
Is it possible to add support for sFTP?
On write I check if uploaded file is csv and when it is not I return error. After returning the error I got another error and then my client crashes....