Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hokaccha/node-confy

Manage settings library, like as pit.
https://github.com/hokaccha/node-confy

Last synced: about 2 months ago
JSON representation

Manage settings library, like as pit.

Awesome Lists containing this project

README

        

# node confy

Manage settings library, like as pit.

## Install

$ npm install confy

## Usage

### javascript code

Get config from current profile.

``` js
var confy = require('confy');

confy.get('twitter.com', { require: {
username: '',
password: ''
}}, function(err, result) {
console.log(result);
});
```

If not set values, open setting your $EDITOR.

### command line

set config

```
$ confy set twitter.com
open $EDITOR
```

get config

```
$ confy get twitter.com
{ username: 'xxx', password: 'xxx' }
```

switch profile

```
$ confy use develop
```

clean all datas

```
$ confy clean
```