Search and load the program's configuration. It has smart defaults based on traditional expectations in the JavaScript ecosystem. But it's also flexible enough to search anywhere you want and load whatever you want.
$ npm i auto-config-loader
import load from 'auto-config-loader';
const data = load('namespace', {
defaults: {
testItem2: 'some value'
}
});
Load the JS file and return the result
// => app.config.js
export default {
name: 'app'
}
import { loadConf } from 'auto-config-loader/load-conf';
interface Config {
name: string;
}
const result = loadConf<Config>('./app/app.config.js');
// => { name: 'app' }
export type Loader<T> = Record<string, (filepath: string, content: string) => T>;
export interface AutoConfOption<T> {
searchPlaces?: string[];
loaders?: Loader<T>;
defaluts?: T;
cwd?: string;
}
export default function autoConf<T>(namespace?: string, option?: AutoConfOption<T>): T;
Default searchPlaces
:
[
'package.json',
`.${moduleName}rc`,
`.${moduleName}rc.json`,
`.${moduleName}rc.yaml`,
`.${moduleName}rc.yml`,
`.${moduleName}rc.toml`,
`.${moduleName}rc.js`,
`.${moduleName}rc.ts`,
`.${moduleName}rc.cjs`,
`.${moduleName}rc.mjs`,
`.config/${moduleName}rc`,
`.config/${moduleName}rc.json`,
`.config/${moduleName}rc.yaml`,
`.config/${moduleName}rc.yml`,
`.config/${moduleName}rc.toml`,
`.config/${moduleName}rc.js`,
`.config/${moduleName}rc.ts`,
`.config/${moduleName}rc.cjs`,
`.config/${moduleName}rc.mjs`,
`${moduleName}.config.js`,
`${moduleName}.config.ts`,
`${moduleName}.config.cjs`,
`${moduleName}.config.mjs`,
]
Configurations are loaded sequentially, and the configuration file search is terminated when a configuration file exists.
This is an example, the default yaml
/yml
does not require a loader.
import load from 'auto-config-loader';
import yaml from 'yaml';
function loadYaml(filepath, content) {
return yaml.parse(content);
}
await load('namespace', {
searchPlaces: [
'.namespacerc.yaml',
'.namespacerc.yml',
],
loaders: {
'.yaml': loadYaml,
'.yml': loadYaml,
},
defaults: {
testItem2: 'some value'
}
});
As always, thanks to our amazing contributors!
Made with contributors.
This package is licensed under the MIT License.