1.5.0 • Published 4 years ago

africa v1.5.0

Weekly downloads
6
License
AGPL-3.0
Repository
gitlab
Last release
4 years ago

africa

npm version Build status

africa is a Node.JS package which simplifies reading from and writing to persistent configuration files in user's home directory. If a configuration exists, it will be read, and if not, the user will be presented with questions, after which the answers will be stored in the .rc file.

yarn add africa

Table Of Contents

API

The package is available by importing its default function:

import africa from 'africa'

async africa(  packageName: string,  questions=: !_reloquent.Questions,  config=: !Config,): !Object

Read package configuration from the home directory, or ask questions with readline interface to create a new configuration in ~/.${packageName}rc.

  • packageName* string: The name of the package.
  • questions !_reloquent.Questions (optional): An object with questions to ask when config wasn't found.
  • config !Config (optional): Configuration object.

Call africa asynchronously to read or create a new configuration. Questions should adhere to the reloquent's interface.

Config: The configuration object to configure additional functionality.

NameTypeDescriptionDefault
forcebooleanAsk questions and update the configuration file even if it already exists.false
homedirstringIn which directory to save and search for configuration file.os.homedir()
questionsTimeoutnumberHow log to wait in ms before timing out. Will wait forever by default.-
localbooleanWhether to read a local config file in the current working directory rather than in the HOMEDIR. When initialising, the default values will be taken from the home config if it exists so that it is easy to extend .rc files.false
recursivebooleanpaid Read all configurations up to the root one from the home directory, and merge them together.false
skipExistingbooleanpaid When creating nested configs, skip writing values that are taken from parent RCs.true
rcNameFunction(packageName: string) => stringFunction used to generate the .rc name. Default: packageName => .${packageName}rc.-
import africa from 'africa'
import { userInfo } from 'os'

(async () => {
  try {
    const config = await africa('africa', {
      name: {
        defaultValue: userInfo().username,
        text: 'user',
      },
    }, { force: true })
    console.log(config)
  } catch ({ stack }) {
    console.log(stack)
  }
})()
user: [zavr]
{ name: 'zavr' }

Groups

It's possible to ask questions in groups, such that answers will be received in a nested object. Only 1 level of nesting is supported at the moment. To group questions, import the Group type and pass questions to it.

import africa, { Group } from 'africa'

africa('test', {
  group: new Group({
    test: {
      text: 'hello',
    },
  }),
  nongroup: {
    text: 'your-name',
  },
}, { force: true, homedir: __dirname })
your-name: [name-doc] name-doc
hello: [world-doc] world-doc
{
  "nongroup": "name-doc",
  "group": {
    "test": "world-doc"
  }
}

Copyright & License

Photo Diana Robinson, 2017

GNU Affero General Public License v3.0

1.5.0

4 years ago

1.4.0

4 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.0

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago