1.0.0 • Published 8 years ago

find-config v1.0.0

Weekly downloads
102,077
License
MIT
Repository
github
Last release
8 years ago

find-config

NPM version Downloads Build Status Coverage Status Chat Tip

Finds the first matching config file, if any, in the current directory, nearest ancestor, or user's home directory. Supports finding files within a subdirectory of an ancestor directory. Configurable with defaults set to support the XDG Base Directory Specification for configuration files.

Because this module is intended to find consistently named configuration files, it is case-sensitive and does not support globs. If you need a more generic solution, see findup-sync or look-up.

Algorithm

Where X is the current directory:

  1. If X/file.ext exists, return it. STOP
  2. If X/.dir/file.ext exists, return it. STOP
  3. If X has a parent directory, change X to parent. GO TO 1
  4. Return NULL.

Install

With Node.js:

$ npm install find-config

Usage

var findConfig = require('find-config');

// Find the path to the nearest `package.json`
var pkg = findConfig('package.json');

// Find the path to the nearest `.foorc` or `.config/foorc`
var foo = findConfig('.foorc');

// Find the path to the nearest `.foorc` or `.config/.foorc`
var foo = findConfig('.foorc', { dot: true });

// Find the path to the nearest module using Node.js module resolution.
// Will look for `bar.js` or `bar/index.js`, etc.
var foo = findConfig('bar', { module: true });

// Find the path to the nearest `baz.json` or `some/path/baz.json`
var foo = findConfig('baz.json', { dir: 'some/path' });

// Find the path to the nearest `qux.json` or `some/path/qux.json` in
// some other directory or its nearest ancestor directory.
var foo = findConfig('qux.json', { cwd: '/other/dir', dir: 'some/path' });

// Find and require the nearest `package.json`
var pkg = findConfig.require('package.json');

// Find and read the nearest `.foorc` or `.config/foorc`
var foo = findConfig.read('.foorc');

API

findConfig(filename, [options]) : String|Null

  • filename String - Name of the configuration file to find.
  • options {Object=}
    • cwd {String=} - Directory in which to start looking. (Default: process.cwd())
    • dir {String=} - An optional subdirectory to check at each level. (Default: '.config')
    • dot {Boolean=} - Whether to keep the leading dot in the filename in dir. (Default: false)
    • home {Boolean=} - Whether to also check the user's home directory. (Default: true)
    • module {Boolean=} - Whether to use Node.js module resolution. (Default: false)

Synchronously find the first config file matching a given name in the current directory or the nearest ancestor directory.

findConfig.obj(filename, [options]) : Object|Null

  • filename String - Name of the configuration file to find.
  • options {Object=} - Same as findConfig().

Finds first matching config file, if any and returns the matched directories and config file path.

findConfig.read(filename, [options]) : String|Null

  • filename String - Name of the configuration file to find.
  • options {Object=} - Same as findConfig() with two additions.
    • encoding {String} - File encoding. (Default: 'utf8').
    • flag {String} - Flag. (Default: 'r').

Finds and reads the first matching config file, if any.

var yaml = require('js-yaml');
var travis = yaml.safeLoad(findConfig.read('.travis.yml'));

findConfig.require(filename, [options]) : *

  • filename String - Name of the configuration file to find.
  • options {Object=} - Same as findConfig().

Finds and requires the first matching config file, if any. Implies module is true.

var version = findConfig.require('package.json').version;

Contribute

Standards for this project, including tests, code coverage, and semantics are enforced with a build tool. Pull requests must include passing tests with 100% code coverage and no linting errors.

Test

$ npm test

© Shannon Moeller me@shannonmoeller.com (shannonmoeller.com)

Licensed under MIT

cz-ppmoney-changelogda-commitizen-config@sitearcade/babel-preset-arcade@sitearcade/eslint-config-arcade@gravityforms/webpack-config@easy-going/cz-customizableseomonkeycz-customizable-kaola@infinitebrahmanuniverse/nolb-find@everything-registry/sub-chunk-1668angular-unit-test-generator@arnat/cz@animaapp/scooby-serviceapollus-cz-customizablean-empty-package-yylfc-second@zmotivat0r/mrepo@agoric/synpressakaragiannis-plop-react-gen@alilc/lowcode-material-parseralgo-wallet@seada/lowcode-material-parser@tychot/gql@sytherax/eth-batcher-contracts@syyfe/cli@whizark/cz-cli@w3ctech-editorial-department/cz-customizable@owlprotocol/envvarsdivi-dev-utilsa-cz-customizableYworkcli@alexktzk/cz-customizable@zalastax/nolb-find@yocode/stacks@00a/plugin.electron@00a/util.os@100tal-yach/utilshuben@baidu-map/bz@baidu-map/bz-logbaiji-cz-ruleastromanaxolemmabcommit@calvinorg/khoros-aurora-sdk-testblade-formatter@cryptology.hk/pay-configjecijiclijestas@creative-directors/client-dashboardjs-sdk-v3-testcz-finiatacz-jiramessageformat-validatordagerikhl-cz-customizable-labcz-emoji-c3cz-conventional-pivotal-trackercz-customcz-message-helpercz-customizable-devcz-customizable-for-studiocz-customizable-forked-sccz-customizable-gccz-customizable-homecz-customizable-lufaxcz-customizable-multi-scopecz-customizable-patcz-customizable-tecz-customizable-yqbcz-customizable-yqb-1cz-cyphercz-robotcz-rrdcz-kiwi-ios-changelogcz-jira-keyscz-custom-dwcz-custom-enhancedcz-custom-issuescz-customconfigcz-customizablecz-customizable-crsmedia-sorternearest-color-shadenode-video-crime-minernxm-cliopenneuro-clicommitpalcommitizen-jiraconfim@dfurnes/heycflintcoda-tableconventional-changelog-c3conventional-changelog-config@digiforce-cloud/dvd-material-parsermonoreponewrelic-alertsbeta-czbeatstepnode-simple-grid
1.0.0

8 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.3

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago