- Notifications
You must be signed in to change notification settings - Fork2
mailsvb/jsftpd
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
FTP server for node.js
Either download fromhere or install via npm.
$ npm install jsftpd
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')constserver=newftpd({cnf:{username:'john',password:'doe',basefolder:'/tmp'}})server.start()
The full documentation of the project is availablehere.
The ftpd instance takes an object with two properties that allows for configuring the new instance.
About
FTP server for node.js