Socket
Socket
Sign inDemoInstall

ts-json-properties

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-json-properties

Use Typescript decorators to retrieve a property from properties.json and load it on class attribute.


Version published
Maintainers
1
Created
Source

Ts.JsonProperties

Build Status Coverage Status npm TypeScript Package Quality npm version Dependencies img img Known Vulnerabilities semantic-release code style: prettier

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).
  • @Constant(expression) : resolve expression and values the attribute but attribut is frozen (decorator).
  • @EnvValue(expression) : resolve expression and values the attribute from process.node.env or from properties if env value doesn't exists (decorator).
  • Properties.get() : resolve expression and values the attribute (programmatic).

Installation

npm install -g typescript
npm install ts-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 'ts-json-properties';

Properties.initialize(); //Import automatically properties.json 

//or load it from another path

Properties.initialize('path/to/properties.json'); 

And finally, you use the decorator to values attributes on your class.

import {Value, Properties} from 'ts-json-properties';

export class Foo {
    
    @Value('documents.doc1')
    private documents1:string; 
    
    constructor(){
    
        console.log('Doc =>', this.documents1); // Doc => /directory/docs/file.pdf
        
        //or with Properties Api
        
        console.log('wsdl', Properties.get('wsdl')); // wsdl => {"wsdl1":"..."}
    }
}

Note : All properties returned by @Value or Properties.getValue are immutable.

From Env

Define your env variable:

export path__to__var = "1000"

Then use @EnvValue:

import {Value, Properties} from 'ts-json-properties';

export class Foo {
    @EventValue('path.to.var')
    private documents1: string; 
}

Note: if the env value is undefined, the value will be retrieved from properties.json

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.

Keywords

FAQs

Package last updated on 08 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc