1.0.2 • Published 10 years ago

edp-config v1.0.2

Weekly downloads
155
License
-
Repository
github
Last release
10 years ago

edp-config

Build Status Dependencies Status

Package for edp configuration.

Usage

var edpConfig = require( 'edp-config' );
edpConfig.set( 'user.name', yourname );
edpConfig.get( 'user.name' );

API

all()

Get all configuration items.

get( name )

Get configuration item.

  • name {string}

set( name, value )

Set configuration item.

  • name {string}
  • value {JSON}