New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

oconf

Package Overview
Dependencies
Maintainers
4
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oconf - npm Package Compare versions

Comparing version

to
2.1.0

test/files/extend-nested-1.cjson

7

package.json

@@ -5,3 +5,3 @@ {

"description": "Configuration",
"version": "2.0.0",
"version": "2.1.0",
"repository": {

@@ -22,6 +22,7 @@ "type": "git",

"bin": {
"oconf": "bin/oconf"
"oconf": "bin/oconf",
"oconf-extract-option": "bin/oconf-extract-option"
},
"scripts": {
"coverage": "NODE_ENV=development istanbul cover -x --include-all-sources _mocha -- --reporter dot",
"coverage": "NODE_ENV=development istanbul cover --include-all-sources _mocha -- --reporter dot",
"lint": "jshint . && jscs .",

@@ -28,0 +29,0 @@ "test": "mocha",

@@ -66,2 +66,48 @@ OConf

Binary
------
To help resolve configuration on the command line oconf exports a CLI
tool called oconf. In it's simplest form it takes a path to an cjson
file, and outputs the resolved JSON object.
```
$ oconf config.cjson
{
"someConfig": "someValue",
"obj": {
"foo": "bar"
}
}
```
Oconf also takes a `--lint` option. It will make oconf not output any
of the resolved configuration, but only exit with an error in case of
any formatting errors in the files.
```
$ oconf --lint config.cjson
```
You can supply a path to a value as well:
```
$ oconf config.cjson obj.foo
"bar"
```
The output from the above is the JSON.stringified format. If you need
to pass it into another cli program, you'd most likely want it as a
string literal and not quoted. That can be achieved like this:
```
$ oconf --bare config.cjson obj.foo
bar
```
If the key is missing oconf will exit with exit code 1. If you need to
overwrite that behaviour you can pass the `--allowmissing` flag to
oconf which will make it exit with status code 0 if no value is found
at the given path.
Tests

@@ -68,0 +114,0 @@ -----

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet