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

find

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find

Find files or directories by name

  • 0.1.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1M
decreased by-3.49%
Maintainers
1
Weekly downloads
 
Created
Source

#find

Find files or directories by name.

Installation

$ npm install find

Examples

Find all .js files in current directory.

var find = require('find');

find.file(/\.js$/, __dirname, 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(/log/, __dirname, function(files) {
  //
})

#dir(pattern, root, callback)

find.dir(/log/, __dirname, function(dirs) {
  //
})

#eachfile(pattern, root, action)

find.eachfile(/./, __dirname, function(file) {
  //
})

#eachdir(pattern, root, callback)

find.eachdir(/./, __dirname, function(dir) {
  //
})

#fileSync(pattern, root)

var files = find.fileSync(/./, __dirname);

#dirSync(pattern, root)

var dirs = find.dirSync(/./, __dirname);

Returned object in Asynchronous APIs

Handling errors

find
  .file(/./, __dirname, function(file) {
    //  
  })
  .error(function(err) {
    if (err) {
      //
    }
  })

Detect end in find.eachfile and find.eachdir

find
  .eachfile(/./, __dirname, function(file) {
    //
  })
  .end(function() {
    console.log('find end'); 
  }) 

LICENSE

(MIT Licensed)

Keywords

FAQs

Package last updated on 21 Aug 2014

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