0.0.1 • Published 11 years ago
pit-ro v0.0.1
Pit RO
Read-only pit for Node.js.
INSTALLATION
$ npm install pit-ro
QUICK USAGE
Load foo
section from ~/.pit/default.yaml
:
var pit = require('pit-ro');
var config = pit.get('foo');
Load bar
section from ~/.pit/another.yaml
:
var pit = require('pit-ro');
var config = pit.get('foo', 'another');
Load buz
section from config.yaml
in the current directory:
var pit = require('pit-ro');
pit.pitDir = './';
var config = pit.get('buz', 'config');
LIMITATION
READ ONLY.
LICENSE
0.0.1
11 years ago