@mount0/ftp
v0.0.1
Published
FTP filesystem provider for mount0
Downloads
3
Readme
@mount0/ftp
FTP filesystem provider for mount0.
Installation
npm install @mount0/ftpUsage
import { mount0 } from '@mount0/core';
import { FtpProvider } from '@mount0/ftp';
const fs = mount0();
fs.handle(
'/ftp',
new FtpProvider({
host: 'ftp.example.com',
port: 21,
user: 'username',
password: 'password',
})
);
await fs.mount('/mnt/myfs');License
MIT
