Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 634 Bytes

index.md

File metadata and controls

36 lines (25 loc) · 634 Bytes

Welcome to jsftpd documentation!

jsftpd is an FTP server written for node.js. It's feature set is:

  • Multi User capable
  • Implicit/Explicit TLS
  • Active/Passive mode for data transfer
  • Hooks for file operations

Install

npm install jsftpd

Quick start

To get an FTP server running quickly, the below code will get you started by allowing access for a single user.

const { ftpd } = require('jsftpd')

const server = new ftpd({cnf: {username: 'john', password: 'doe', basefolder: '/tmp'}})

server.start()

Contents

---
maxdepth: 1
glob:
---
*