Socket
Socket
Sign inDemoInstall

find-promise

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    find-promise

Find files or directories by name, a wrapper to `find` package


Version published
Maintainers
1
Install size
643 kB
Created

Readme

Source

#find

Find files or directories by name. Using promises

Installation

$ npm install --save find-promise

Examples

Find all files in current directory.

var find = require('find-promise');

find.file(__dirname).then(function(files) {
  console.log(files.length);
})

Filter by regular expression.

find.file(/\.js$/, __dirname.then(function(files) {
  console.log(files.length);
})

Features

  • Recursively search each sub-directories
  • Asynchronously or synchronously
  • Filtering by regular expression or string comparing

API

.file([pattern,] root, callback)
find.file(__dirname).then(function(files) {
  //
})
.dir([pattern,] root, callback)
find.dir(__dirname).then(function(dirs) {
  //
})
.eachfile([pattern,] root, action)
find.eachfile(__dirname, function(file) {
  //
}).then(onEnd)
.eachdir([pattern,] root, action)
find.eachdir(__dirname, function(dir) {
  //
}).then(onEnd)
.fileSync([pattern,] root)
var files = find.fileSync(__dirname);
.dirSync([pattern,] root)
var dirs = find.dirSync(__dirname);

LICENSE

(MIT Licensed)

Keywords

FAQs

Last updated on 09 Jul 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc