Socket
Socket
Sign inDemoInstall

ftp-test-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftp-test-server

Wrapper around pyftpdlib to have a fast, readily available FTP server for testing.


Version published
Weekly downloads
16
decreased by-5.88%
Maintainers
1
Weekly downloads
 
Created
Source

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

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"
});

Keywords

FAQs

Package last updated on 13 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc