🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

coherent

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coherent

Read and write any config file format

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Coherent

Read and write any config file format. Does for config files what consolidate does for templating languages.

NPM

Usage

var coherent = require('coherent');

// Extension can be left out or included, it will search for a
// supported file and a matching installed parser/stringifier
var cfile = coherent(__dirname+'/local-config');

var config = cfile.read();

config.runCount = config.runCount || 0;
config.runCount++;

cfile.write(config);

Supported Formats

Read from formats provided by parse-formats and write to formats provided by stringify-formats. Feel free to suggest another format to support by opening an issue or pull request in those repositories.

You must install the module you are using to parse or stringify the format within your own project. This is so that coherent does not install and compile every one of them when it's installed. See the links above for lists of those modules, or check the error message coherent throws if the neccesary module is missing.

Your mileage may vary as each format and/or its parser/stringifier may lack full features.

Documentation

cfile = coherent(filePath[, opts])

Returns an object with .read and .write methods. Determines the extension by searching for accessible files. The opts object will extend the following defaults:

{
    readFormats: require('parse-formats),
    writeFormats: require('stringify-formats'),
    ext: '', // Specify if you want
    encoding: 'utf8', // Passed to fs functions,
    parserOpts: undefined, // Additional options object to pass to the parser/stringifier
}
cfile.read([opts])

Synchronously reads the file and attempts to parse it. opts will extend but not modify the opts passed to the coherent().

cfile.write(data, [opts])

Synchronously attempt to stringify data and write the result to the file, overriding the old file. opts will extend but not modify the opts passed to coherent().

coherent.read(path, [opts]) and coherent.write(path, data, [opts])

Shorter version equivalent to coherent(path).read/.write but will search for the file each time.

License

MIT

Keywords

config

FAQs

Package last updated on 24 May 2016

Did you know?

Socket

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.

Install

Related posts