@ramonornela/configuration
TypeScript icon, indicating that this package has built-in type declarations

0.0.13 • Public • Published

ConfigurationModule

This allow define configuration in the app with object, file json (local or external) or custom strategy (ex: yaml)

Using in an Ionic 2 app

import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';

// import ConfigurationModule
import { ConfigurationModule } from '@ramonornela/configuration';

export const APP_CONFIG = {
  'my-config': 'My Config',
  'my-config-env': {
    'dev': 'Config Dev',
    'prod': 'Config Dev'
  }
};

@NgModule({
  declarations: [
    MyApp
  ],
  imports: [
    IonicModule.forRoot(MyApp),
    ConfigurationModule.initialize(APP_CONFIG, 'dev')
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp
  ]
})
export class AppModule {}

Contributing

See CONTRIBUTING.md

Dependents (0)

Package Sidebar

Install

npm i @ramonornela/configuration

Weekly Downloads

2

Version

0.0.13

License

MIT

Last publish

Collaborators

  • ramonornela