Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 579 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 579 Bytes

sftp-provider

sftp provider for @fox-finder

Usage

yarn add @fox-finder/sftp-provider
import { IFile, FileProvider } from '@fox-finder/base'
import { SFTPProvider } from '@fox-finder/sftp-provider';

const sftpProvider = new SFTPProvider({
  /* options... */
});

sftpProvider.listFile('/Users/mypath/somefiles').then(data => {
  console.log('\n - list data \n', data);
});

Acknowledgements