
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain 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 1,862 weekly downloads. As such, utils-fs-read-file popularity was classified as 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.