Socket
Socket
Sign inDemoInstall

@hapiness/config

Package Overview
Dependencies
13
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @hapiness/config

Configuration Library to use it inside Hapiness framework or standalone


Version published
Weekly downloads
12
Maintainers
1
Created
Weekly downloads
 

Readme

Source
Hapiness
build coveralls dependencies devDependencies

Hapiness Config

Configuration module based on node-config & js-yaml libraries.

Table of contents

Using config module

yarn or npm it in your package.json

$ npm install --save @hapiness/config

or

$ yarn add @hapiness/config
"dependencies": {
    "@hapiness/core": "^1.0.0-beta.4",
    "@hapiness/config": "^1.0.0-beta.4",
    //...
}
//...

Standalone

./config/default.yml:

my:
    config: test

Node.js Script:

import { Config } from '@hapiness/config';

Config.load(); // Load config, see node-config

if (Config.has('my.config')) {
    console.log(Config.get('my.config')); // output: 'test'
}

Hapiness

./config/default.yml:

my:
    baseUrl: 'test'

Hapiness module:

// external-module.ts
  import {
    HapinessModule,
    CoreModuleWithProviders,
    InjectionToken,
    Inject,
    Optional,
  } from '@hapiness/core';

  const CONFIG = new InjectionToken('config');
  interface Config {
    baseUrl: string;
  }

    @HapinessModule({
        ...
    })

    export class ExternalModule {
        static setConfig(config: Config): CoreModuleWithProviders {
            return {
                module: ExternalModule,
                providers: [{ provide: CONFIG, useValue: config }]
            };
        }
    }

    export class Service {
      constructor(@Optional() @Inject(CONFIG) config) { // @Optional to not throw errors if config is not passed
        ...
      }
    }

    // main-module.ts
    import {
      HapinessModule,
    } from '@hapiness/core';
    import { ExternalModule } from 'external-module';
    import { Config } from '@hapiness/config';
    
    Config.load(); // Load config, see node-config

    @HapinessModule({
        ...
        imports: [ ExternalModule.setConfig(Config.get('my')) ]
    })
    ...

Back to top

Change History

  • v1.0.0-beta.4 (2017-05-15)
    • Latest packages versions
    • Fix phony scripts
    • Documentation.
    • Module version related to core version.
  • v1.0.0-beta.3 (2017-05-11)
    • Create Config module.
    • Tests module.
    • Documentation.
    • Module version related to core version.

Back to top

Maintainers

tadaweb
Julien FauvilleAntoine GomezSébastien RitzNicolas Jessel

Back to top

License

Copyright (c) 2017 Hapiness Licensed under the MIT license.

Back to top

Keywords

FAQs

Last updated on 15 May 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc