![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
A simple configuration library for Angular applications
@nglx/cfg attempts to streamline the app configuration while keeping it DRY.
npm install @nglx/cfg |OR| yarn add @nglx/cfg
// In your environment{prod,staging}.ts
import { AppCfg, TargetPlatform, HttpMethod } from '@nglx/cfg';
export const environment: AppCfg = {
// release version
version: string;
// app name
appName: 'Angular Configuration Module',
// target (browser, mobile, desktop)
target: TargetPlatform.web,
// production, staging or development
production: true
// one or more app specific field(s)
};
// In your app.module.ts - Register your environment
import { CfgModule } from '@nglx/cfg';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, CfgModule.forRoot(environment)],
bootstrap: [AppComponent]
})
export class AppModule {}
// In your app.component.ts or (some.service.ts) - Inject cfgService & access environment anywhere.
import { Component } from '@angular/core';
import { CfgService } from '@nglx/cfg';
@Component({
selector: 'app-root'
})
export class AppComponent {
title = '@nglx/cfg';
constructor(public cfg: CfgService) {
this.title = this.cfg.options.appName;
}
}
Remote configuration - What if you need remote config before you started the Angular app?
@nglx/cfg
can also be used to fetch remote configuration prior to start of an Angular app.
// In your environment{prod,staging}.ts
import { AppCfg, TargetPlatform, HttpMethod } from '@nglx/cfg';
export const environment: AppCfg = {
// release version
version: '1.0.0',
// app name
appName: 'Angular Configuration Module',
// target (browser, mobile, desktop)
target: TargetPlatform.web,
// production, staging or development
production: true,
// remote configuration (from the server prior to ng bootstrap)
rmtCfg: {
// server url to get remote config from (default = null)
endpoint: '/api/config',
// GET or POST http method to connect to remote server (default = get)
method: HttpMethod.get,
// Max timeout of http connection to remote server (default = 2 seconds)
timeout: 3,
// http headers to include in http connection to remote server
headers: { 'Content-Type': 'application/json' }
// body of request when using http POST method (default = {})
body: {
// one or more app specific field(s)
}
}
// one or more app specific field(s)
};
// In your app.module.ts
import { CfgModule } from '@nglx/cfg';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, CfgModule.forRoot(environment)],
bootstrap: [AppComponent]
})
export class AppModule {}
// In your app.component.ts or (some.service.ts)
import { Component } from '@angular/core';
import { CfgService } from '@nglx/cfg';
import { merge } from 'lodash';
@Component({
selector: 'app-root'
})
export class AppComponent {
title = '@nglx/cfg';
options = {};
constructor(public cfg: CfgService) {
this.options = merge({ name: 'AppComponent' }, this.cfg.options};
const remoteCfgData = this.options.rmtData;
}
}
To run the tests against the current environment:
npm run ci:all |OR| yarn ci:all
Released under a (MIT) license.
X.Y.Z Version
`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes
FAQs
**A simple configuration library for Angular applications**
We found that @nglx/cfg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.