4.0.1 • Published 8 years ago
@stefanini/configuration v4.0.1
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 '@stefanini/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