ftpfs

1.1.0 • Public • Published

ftpfs

an ftp client that expose the node fs API

only supports createReadStream, readDir, stat and lstat right now

usage

var ftp = ftpfs({ port: 2121 })
 
var readStream = ftp.createReadStream('hello.txt')
 
ftp.readdir('/', function (err, list) {
 
})
 
ftp.stat('hello.txt', function (err, stat) {
 
})
 
ftp.end()

Readme

Keywords

none

Package Sidebar

Install

npm i ftpfs

Weekly Downloads

1

Version

1.1.0

License

ISC

Last publish

Collaborators

  • maxogden