https://github.com/sergi/ftp-test-server
Simple wrapper around pyftpdlib to have an easy FTP server to try stuff with
https://github.com/sergi/ftp-test-server
Last synced: about 1 year ago
JSON representation
Simple wrapper around pyftpdlib to have an easy FTP server to try stuff with
- Host: GitHub
- URL: https://github.com/sergi/ftp-test-server
- Owner: sergi
- Created: 2013-06-16T14:15:15.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-01-13T12:14:53.000Z (over 11 years ago)
- Last Synced: 2025-04-04T00:35:55.303Z (about 1 year ago)
- Language: Python
- Size: 408 KB
- Stars: 6
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ftp-test-server
ftp-test-server is a very simple wrapper for pyftpdlib that provides the user with a ready-to-use
FTP server for testing and experiments.
## Usage
```javascript
var Server = require('ftp-test-server');
var myFtp = new Server();
myFtp.on('stdout', function(data) {
console.log(data);
});
myFtp.on('stderr', function(data) {
console.log('ERROR', data);
})
myFtp.init({
user: "sergi",
pass: "1234",
port: "3334"
});
```