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

Latest commit

 

History

History
26 lines (17 loc) · 594 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 594 Bytes

node-fs-provider

node-fs provider for @fox-finder

Usage

yarn add @fox-finder/node-fs-provider
import { IFile, FileProvider } from '@fox-finder/base'
import { NodeFsProvider } from '@fox-finder/node-fs-provider';

const nodeFsProvider = new NodeFsProvider();

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

Acknowledgements