dir-each

0.3.6 • Public • Published

dir-each

higher order functions for iterating over files

Installation

With npm

$ npm install dir-each --save

then in your app:

var each = require('dir-each')
var series = require('dir-each/series')

API

both functions also come in variations which include symlinked files. To access them use fn.withSyms

each(dir:String, fn:Function)

iterate over each file in dir and apply fn. each fully understands the semantics of Results so you can pass them as arguments and return them from fn with the desired effect.

var files = 0
each(process.env.HOME, function(path){
  console.log(path)
  files++
}).read(function(){
  console.log('you own %d files', files)
})

series(dir:String, fn:Function)

as above but waits on results between iterations

Running the tests

$ npm install
$ make test

Readme

Keywords

none

Package Sidebar

Install

npm i dir-each

Weekly Downloads

1

Version

0.3.6

License

none

Last publish

Collaborators

  • jkroso