6.0.1 • Published 1 year ago

@fcostarodrigo/walk v6.0.1

Weekly downloads
574
License
MIT
Repository
github
Last release
1 year ago

Walk

Simple node module to transverse files recursively.

Installation

npm install @fcostarodrigo/walk

Usage

import { walk } from "@fcostarodrigo/walk";

for await (const file of walk()) {
  console.log(file);
}

Documentation

walk(root, lisFolders, walkFolder);

root: Optional folder to transverse. Defaults to ..

includeFolders: Optional flag to list folders. Defaults to false.

walkFolder: Optional callback to decide if a folder is going to be transversed.

The function is an async generator that yields the paths of the files recursively.

Changelog

License

MIT License