@mount0/ftp
v0.1.0
Published
FTP filesystem provider for mount0
Downloads
186
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
