unravel
Version:
Streaming recursive directory reading
31 lines (26 loc) • 710 B
Markdown
###Unravel - Streaming recursive directory reading.
Install: ```npm install unravel```
***
###unravel.dir(directory):
Pass the folder to recursively read. Events ```file```, ```end``` and ```error``` will be emitted.
```
var unravel = require('unravel')
unravel.dir(__dirname)
unravel.on('file', function(file){
console.log(file)
})
unravel.on('end', function(){
console.log('end')
})
unravel.on('error', function(err){
console.log(err)
})
```
###Examples:
[View the examples](https://github.com/bradleyg/unravel/blob/master/example/example.js)
***
###Tests
```
npm test
```
[](http://travis-ci.org/bradleyg/unravel)