1.0.5 • Published 7 years ago

activerules-read-files v1.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

activerules-read-files

NPM version Build Status Code Climate Coverage Status Dependency Status devDependency Status

A Node module to read multiple files asynchronously. MISSING FILES WILL BE IGNORED without error.

const multipleFiles = require('activerules-read-files');

multipleFiles(['one.txt', 'another.txt'], (err, bufs) => {
  if (err) {
    throw err;
  }

  bufs; //=> [<Buffer ... >, <Buffer ... >]
});

Installation

Use npm.

npm install activerules-read-files

API

const multipleFiles = require('activerules-read-files');

multipleFiles(paths , options, callback)

paths: Array of String (file paths)
options: Object (fs.readFile options) or String (encoding)
callback: Function

callback(error, contents)

error: Error if it fails terribly, otherwise null, it does not error on a missing file. contents: Array of Buffer or String (according to encoding option)

The second argument will be an array of file contents. The order of contents follows the order of file paths.

It automatically strips UTF-8 byte order mark from results.

const multipleFiles = require('activerules-read-files');

// foo.txt: Hello
// bar.txt: World

multipleFiles(['foo.txt', 'bar.txt'], 'utf8', (err, contents) => {
  if (err) {
    throw err;
  }

  contents; //=> ['Hello', 'World']
});

If it fails terribly it passes an error to the first argument and doesn't pass any values to the second argument. It will silent handle missing files withiut throwing an error.

const multipleFiles = require('activerules-read-files');

// foo.txt: exists
// bar.txt: doesn't exist
// baz.txt: exists

multipleFiles(['foo.txt', 'bar.txt', 'baz.txt'], (err, contents) => {
  err.code; //=> 'ENOENT'
  contents; //=> undefined
  arguments.length; //=> 1
});

Related project

License

Copyright (c) 2017 - Brian Winkers

Licensed under the MIT License.

Check back soon...