Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Requires at least partial ES6 support (node v4 or higher)
npm install fastconf
console.log(process.env) /* {
'FOO_BAR': '123',
'NOPE': 'true',
'XBPF_ZIG_ZAG': '2929'
} */
const config = fastconf([
// All keys are required unless a default value is provided
['FOO_BAR', {type: Number}],
['NOPE', {type: Boolean, defaultValue: false}],
['MORE_THINGS', {defaultValue: 'apples'}]
], {
xbpf: { // You can also pass an object (with the keys prop) if you want to
// further configure fastconf
prefix: 'XBPF_',
keys: [
'ZIG_ZAG' // You can also just provide strings in keys array (options are defaults)
]
}
})
console.log(config) /* {
fooBar: 123,
nope: true,
moreThings: 'apples',
xbpf: {
zigZag: '2929'
}
} */
import fastconf from 'fastconf'
// Fastconf is a convenience utility to quickly generate a
// configuration object based on the provided lookup object.
//
// It expects that all keys you give it are unique (will
// never map to the same key in the returned object), and that
// all keys are required unless specified optional.
const config = fastconf({
// (Since 0.2.0) You can now just pass an array in place of the first object,
// which is equivalent to passing {keys: [the array]}
// Prefix, useful for not having to repeat yourself.
// If you have a prefix of 'NICE_', and have a required key 'FOO_BAR',
// then fastconf will expect there to be an environment variable
// with the key 'NICE_FOO_BAR', and will add it to the object
// with the key fooBar.
prefix: 'NICE_',
// Whether to normalize names of the environment variables or not.
// If true, keys like FOO_BAR will be named fooBar in the returned
// configuration object.
//
// Defaults to true.
normalizeNames: true,
// Whether to consider a required key as existing only if it's undefined.
// Otherwise, the following rule applies:
// * The key does not exist if the environment variable is an empty string
//
// Defaults to false.
strictExistence: false,
// (Since 0.3.0) Whether to wrap the returned object in a proxy
// that throws an error when getting keys that have undefined values.
//
// If true, and Proxy is not a function then this will
// throw an error.
// Defaults to false.
useProxy: false,
// An array of [key, options] values.
//
// (Since 0.1.0) The elements could also just be strings, which is the same
// as doing ['KEY'] (default options)
keys: [
['FOO_BAR', {
// Key type. Can be either String, Number, or Boolean.
//
// The String type returns values as-is.
//
// The Number type parses the string as a number. If the
// parsed number is NaN, then fastconf will throw an error.
//
// The Boolean type tried to parse the string as a boolean.
// It must be one of the following values:
// false: '0', 'false' (case insensitive), 'no' (case insensitive)
// true: '1', 'true' (case insensitive), 'yes' (case insensitive)
//
// Defaults to String.
type: Number,
// Whether to normalize the name for this individual key.
// See normalizeNames's documentation for more info.
//
// Defaults to normalizeNames's value.
normalizeName: false,
// Whether to use strict existence checking for this individual
// key. See strictExistence's documentation for more info.
strictExistence: true,
// Default value, which can be any value. If a default value
// is provided (not undefined), then the key is no longer required, and
// fastconf will not throw an error if the value does not
// exist.
defaultValue: 0
}],
['MORE_THINGS', {type: String, defaultValue: null}]
]
}, {
// The optional second object provided are any "namespaces"
// that you want to provide. These can be nested.
// For example, if you have the 'xbpf' namespace, with its
// own set of keys and values, the returned
// object will look like this:
//
// {
// FOO_BAR: 123,
// moreThings: null,
// xbpf: {
// zigZag: 2929
// }
// }
//
// This is useful for separate prefixes, and general organization.
// Note that the object gets run through another call to fastconf(),
// with the difference of it reusing the already determined environment
// object.
xbpf: {
prefix: 'XBPF_',
keys: [
['ZIG_ZAG', {type: Number}]
]
}
}, {
// If you wish to, you can provide your own key-value environment map.
// Requires that all values for the keys are strings.
//
// Otherwise, fastconf will use process.env
'NICE_FOO_BAR': '123',
'XBPF_ZIG_ZAG': '2929'
})
FAQs
super simple environment-based configuration utility
We found that fastconf 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.