json-properties
Use typescript decorator to retrieve a property from properties.json and load it on class attribute.
Features
@Value(expression)
: resolve expression and values the attribute (decorator).Properties.getValue
: resolve expression and values the attribute (programmatic).
Installation
$ npm install -g typings
$ npm install json-properties
Example
In first place, you need to create a `properties.json in your project's root and write some data like this :
{
"product":"MP",
"myOwnData":{
"data1":1
}
}
You can separate your json in multiple json file with the attribute propertiesFile
. Just adding this code on your properties.json
:
{
"product":"MP",
"myOwnData":{
"data1":1
},
"propertiesFiles":{
"cwd":"./properties",
"files":{
"documents": "documents.json",
"wsdl": "wsdl.json"
}
}
}
In this case, when Properties
load your properties file in memory, it'll provide a JSON like this :
{
"product":"MP",
"myOwnData":{
"data1":1
},
"documents": {
"doc1": "/directory/docs/file.pdf"
},
"wsdl": {
"wsdl1": "..."
}
}
Next step, You must initialize Properties
in your app.js
. Just add this code for that :
import {Properties} from 'json-properties';
Properties.initialize();
Properties.initialize('path/to/properties.json');
And finally, you use the decorator to values attributes on your class.
import {Value, Properties} from 'json-properties';
export class Foo{
@Value('documents.doc1')
private documents1:string;
constructor(){
console.log('Doc =>', this.documents1);
console.log('wsdl', Properties.getValue('wsdl'));
}
}
Note : All properties returned by @Value
or Properties.getValue
are immutable.
Test
$ npm install -g mocha
$ npm test
License
The MIT License (MIT)
Copyright (c) 2016 Romain Lenzotti
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.