fpath

0.1.5 • Public • Published

fpath

The fpath module is a simple module that provides some useful helpers when working with pull-streams and the file system.

NPM

Build Status unstable

entries(targetPath, opts)

A pull-stream source that generates provides the full path of files in the specified target path:

var fpath = require('fpath');
var pull = require('pull-stream');
 
pull(
  fpath.entries(__dirname),
  pull.collect(function(err, entries) {
    console.log('found ' + entries.length + ' entries: ', entries);
  })
);
 

filter(test)

The filter function provides a through stream that will only pass through those files that pass a truth test. As it's usually handy to have more information on the file than just it's name, the fs.stat function is called on each file before being passed to the test function.

The following example demonstrates how you could only pass through directories from an entries source stream:

var fpath = require('fpath');
var pull = require('pull-stream');
var path = require('path');
 
pull(
  fpath.entries(path.resolve(__dirname, '..')),
  fpath.filter(function(filename, stats) {
    return stats.isDirectory()
  }),
  pull.collect(function(err, items) {
    // items will contain the directory names
    console.log('found directories: ', items);
  })
);
 

Additionally, a filter shortcut is available if you just want to call one of the many "is*" methods available on an fs.Stats object:

var fpath = require('fpath');
var pull = require('pull-stream');
var path = require('path');
 
pull(
  fpath.entries(path.resolve(__dirname, '..')),
  fpath.filter('isDirectory'),
  pull.collect(function(err, items) {
    // items will contain the directory names
    console.log('found directories: ', items);
  })
);
 

In the case when the filter function is called without a test function provided all files will be dropped from the stream:

var fpath = require('fpath');
var pull = require('pull-stream');
var path = require('path');
 
pull(
  fpath.entries(path.resolve(__dirname, '..')),
  fpath.filter(),
  pull.collect(function(err, items) {
    // items will contain the directory names
    console.log('found directories: ', items);
  })
);
 

License(s)

MIT

Copyright (c) 2014 Damon Oehlman damon.oehlman@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i fpath

Weekly Downloads

2

Version

0.1.5

License

MIT

Last publish

Collaborators

  • damonoehlman