1.0.0 • Published 9 years ago

utils-fs-read-hjson v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Read Human JSON

NPM version Build Status Coverage Status Dependencies

Reads the entire contents of a Human JSON file.

Installation

$ npm install utils-fs-read-hjson

Usage

var read = require( 'utils-fs-read-hjson' );

read( path, options, clbk )

Reads the entire contents of a Human JSON file.

read( '/path/to/data.hjson', onData );

function onData( error, data ) {
	if ( error ) {
		console.error( error );
	} else {
		console.log( data );
	}
}

The function accepts the same options as fs.readFile(), but encoding is always set to utf8.

read.sync( path, options )

Synchronously reads the contents of an entire Human JSON file.

var out = read.sync( '/path/to/data.hjson' );
if ( out instanceof Error ) {
	throw out;
}
console.log( out );

The function accepts the same options as fs.readFileSync().

Examples

var path = require( 'path' ),
	read = require( 'utils-fs-read-hjson' );

var file = path.join( __dirname, 'config.hjson' );

// Sync:
var data = read.sync( file, 'utf8' );
// returns <object>

console.log( data instanceof Error );
// returns false

data = read.sync( 'beepboop', {
	'encoding': 'utf8'
});
// returns <error>

console.log( data instanceof Error );
// returns true


// Async:
read( file, onRead );
read( 'beepboop', onRead );

function onRead( error, config ) {
	if ( error ) {
		if ( error.code === 'ENOENT' ) {
			console.error( 'Human JSON file does not exist.' );
		} else {
			throw error;
		}
	} else {
		console.log( 'Port: %s.', config.server.port );
	}
}

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

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.

Test Coverage

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

License

MIT license.

Copyright

Copyright © 2015. Athan Reines.