Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 593 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 593 Bytes

Node.js Dummy FTP Server

This is an FTP Server made with Node.js for a course project in Distributed Systems. The code needs some cleaning and revisions.

The server can receive, send, create, list and delete files/directories. Notice that sending directories may cause (not yet handled) errors.

The server was manually tested with FileZilla client app. The connection needs to be ftp (insecure) active. Future updates will take care of security.

List of accepted commands

  • USER
  • PASS
  • SYST
  • FEAT
  • TYPE
  • PORT
  • STOR
  • RETR
  • MKD
  • RMD
  • DELE
  • LIST
  • PWD
  • CWD
  • CLOSE