
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
utils-fs-read-file
Advanced tools
Reads the entire contents of a file.
$ npm install utils-fs-read-file
var readFile = require( 'utils-fs-read-file' );
Reads the entire contents of a file.
readFile( __filename, onFile );
function onFile( error, data ) {
if ( error ) {
console.error( error );
} else {
console.log( data );
}
}
The function accepts the same options as fs.readFile()
.
Synchronously reads the contents of an entire file.
var out = readFile.sync( __filename );
if ( out instanceof Error ) {
throw out;
}
console.log( out );
The function accepts the same options as fs.readFileSync()
.
The difference between this module and fs.readFileSync()
is that fs.readFileSync()
will throw if an error
is encountered (e.g., if given a non-existent path
) and this module will return an error
. Hence, the following anti-pattern
var fs = require( 'fs' );
var file = '/path/to/file.js';
// Check for existence to prevent an error being thrown...
if ( fs.existsSync( file ) ) {
file = fs.readFileSync( file );
}
can be replaced by an approach which addresses existence via error
handling.
var readFile = require( 'utils-fs-read-file' );
var file = '/path/to/file.js';
// Explicitly handle the error...
file = readFile.sync( file );
if ( file instanceof Error ) {
// You choose what to do...
throw file;
}
var readFile = require( 'utils-fs-read-file' );
// Sync:
var file = readFile.sync( __filename, 'utf8' );
// returns <string>
console.log( file instanceof Error );
// returns false
file = readFile.sync( 'beepboop', {
'encoding': 'utf8'
});
// returns <error>
console.log( file instanceof Error );
// returns true
// Async:
readFile( __filename, onFile );
readFile( 'beepboop', onFile );
function onFile( error, data ) {
if ( error ) {
if ( error.code === 'ENOENT' ) {
console.error( 'File does not exist.' );
} else {
throw error;
}
} else {
console.log( 'Success!' );
}
}
To run the example code from the top-level application directory,
$ node ./examples/index.js
Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-cov
Istanbul creates a ./reports/coverage
directory. To access an HTML version of the report,
$ make view-cov
Copyright © 2015. Athan Reines.
FAQs
Reads the entire contents of a file.
The npm package utils-fs-read-file receives a total of 578 weekly downloads. As such, utils-fs-read-file popularity was classified as not popular.
We found that utils-fs-read-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.