Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rrdir

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rrdir

Recursive directory crawler with a delightful API

  • 3.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
132
decreased by-13.73%
Maintainers
1
Weekly downloads
 
Created
Source

rrdir

Recursive directory crawler with a delightful API

Installation

npm i rrdir

Examples

const rrdir = require("rrdir");

const entries = await rrdir("../dir");
// => [{path: '../dir/file1', directory: false, symlink: true}]

const entries = rrdir.sync("../dir");
// => [{path: '../dir/file1', directory: false, symlink: true}]

for await (const entry of rrdir.stream("../dir")) {
  // => {path: '../dir/file1', directory: false, symlink: true}
}

API

rrdir(dir, [options])

rrdir.sync(dir, [options])

rrdir.stream(dir, [options])

Recursively crawls a directory for entries contained within. By default, errors while reading files will be ignored and put in entry.err. The functions can throw on other unexpected conditions. rrdir and rrdir.sync return an array of entry, rrdir.stream is a async iterator which yields entry.

options
  • options.stats boolean: Whether to include entry.stats. Will reduce performance. Default: false.
  • options.followSymlinks boolean: Whether to follow symlinks when options.stats is enabled. Default: true.
  • options.exclude Array: Path globs to exclude from the result. Default: [].
  • options.strict boolean: Whether to throw immediately when reading an entry fails. Default: false.
  • options.encoding string: The encoding to use on entry.path. Default: 'utf8'.
  • options.minimatch Object: minimatch options. Default: {matchBase: true, dot: true, nocomment: true}.
entry
  • entry.path string: The path to the entry, will be relative if dir is given relative. Always present.
  • entry.directory boolean: Boolean indicating whether the entry is a directory. undefined on error.
  • entry.symlink boolean: Boolean indicating whether the entry is a symbolic link. undefined on error.
  • entry.stats Object: A fs.stats object, present when options.stats is set. undefined on error.
  • entry.err Error: Any error encountered while reading this entry. undefined on success.

© silverwind, distributed under BSD licence

Keywords

FAQs

Package last updated on 01 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc