yaml-config-azure
v0.1.0
Published
Manage your node.js app configuration based on NODE_ENV, all configuration defined in yaml and stored in Windows Azure blob storage
Downloads
4
Readme
yaml-config-azure
yaml-config-azure
Manage your configuration based on NODE_ENV, all configuration defined with yaml and stored in Windows Azure storage. Shared configuration can be put under default
key, different settings under each enviroment name.
Based on https://github.com/rjyo/yaml-config-node
Installation
$ npm install yaml-config-azure
Usage
Create a blob inside a container on azure blob storage
default:
redis:
port: 6379 # redis server port
host: '127.0.0.1' # redis host
password: '' # to use with AUTH
db: 1 # the test db
options: {}
test:
redis:
db: 12
production:
redis:
db: 0
new_prop:
hello: 'world'
In your source code
var config = require('yaml-config-azure');
var settings;
config.load('myappconfig.yml', 'mycontainer', null, function(error, result) {
settings = result;
});
console.log(settings.redis.db); // if NODE_ENV is development, prints 1
The readConfig()
function takes a second parameter as enviroment name, for example
config.load('myappconfig.yml', 'mycontainer', 'test', function(error, result) {
settings = result;
});
console.log(settings.redis.db); // prints 12
Since the library uses Windows Azure blob storage through the 'azure' package, it will expect that process.env.AZURE_STORAGE_ACCOUNT and process.env.AZURE_STORAGE_ACCESS_KEY be set.
License
(The MIT License)
Copyright (c) 2012 Matias Woloski <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.