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

dirscanner

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dirscanner

Analyze a directory substructure and return it as an object.

  • 0.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

DirScanner

Traverses a given directory and builds a tree from its structure.

Installation

npm install dirscanner

Usage

API

dirscanner(target, ignore, start);

  • target

    The path to scan.

  • ignore

    Optional array of regexp objects. Any basename matching this pattern will not be scanned. Might be expanded to include full paths in the future.

  • start

    Third optional argument, pass false if you don't want the dirscanner to start immediately.

Example

Start scan in target directory.

var dirscanner = require('dirscanner');
var ds = dirscanner('/path/to/directory/to/scan');
ds.on('done', function (root) {
  console.log('Scan complete\nHere\'s the root obejct:', root);
});

Keywords

FAQs

Package last updated on 09 Jan 2013

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