Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@fullerstack/ngx-logger
Advanced tools
A simple logger module for Angular applications
Proper logging of events is one of the most important aspect of any proper software design and architecture. This is to toggle
a flag and have a desired portion of the logic log their activities. This is a MUST
during debugging sessions, or simply to report an error and send the log on production
deployments.
@fullerstack/ngx-logger attempts to streamline the logging of your application, while promoting DRY DRY.
npm i @fullerstack/ngx-logger |OR| yarn add @fullerstack/ngx-logger
// In your environment{prod,staging}.ts
import {
ApplicationCfg,
TargetPlatform,
HttpMethod,
} from '@fullerstack/ngx-cfg';
import { LogLevels } from '@fullerstack/ngx-logger';
export const environment: Readonly<ApplicationCfg> = {
production: false,
// one or more app specific field(s)
logger: {
// Log level, (default = none)
// Anything above `info` will be logged, anything below will be skipped
level: LogLevels.info,
},
};
// In your app.module.ts
import { CfgModule } from '@fullerstack/ngx-cfg';
import { LoggerModule } from '@fullerstack/ngx-logger';
import { environment } from '../environments/environment';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
CfgModule.forRoot(environment),
LoggerModule.forRoot(),
],
bootstrap: [AppComponent],
})
export class AppModule {}
// In your app.component.ts or (some.service.ts)
import { Component } from '@angular/core';
import { CfgService } from '@fullerstack/ngx-cfg';
import { LoggerService } from '@fullerstack/ngx-logger';
@Component({
selector: 'app-root',
})
export class AppComponent {
title = 'FullerStack';
private _options: Readonly<ApplicationCfg>;
constructor(public cfg: CfgService, public log: LogService) {
this.title = this.cfg.options.appName;
this.log.critical('Logging critical');
this.log.error('Logging error and above');
this.log.warn('Logging warn and above');
this.log.info('Logging info and above');
this.log.debug('Logging debug and above');
this.log.trace('Logging trace and above');
}
get options(): Readonly<ApplicationCfg> {
return this._options;
}
}
CfgService ready ...
2018-05-17T02:47:54.184Z [DEBUG] LogService ready ...
2018-05-17T02:47:54.188Z [DEBUG] GqlService ready ...
2018-05-17T02:47:54.375Z [DEBUG] I18nService ready ... (en)
2018-05-17T02:47:54.378Z [DEBUG] UixService ready ...
2018-05-17T02:47:54.379Z [DEBUG] JwtService ready ...
2018-05-17T02:47:54.384Z [DEBUG] Token expiry ... (21 seconds)
2018-05-17T02:47:54.388Z [DEBUG] AuthService ready ... (loggedIn)
2018-05-17T02:47:54.390Z [DEBUG] UsrService ready ...
2018-05-17T02:47:54.392Z [DEBUG] Web app starting now ...
2018-05-17T02:47:54.406Z [DEBUG] LayoutService ready ...
@fullerstack/ngx-logger
depends on @fullerstack/ngx-cfg
for accessing the log level.LogLevels.debug
for development and LogLevels.warn
for production.@fullerstack/ngx-logger
should be imported at the root level of your application.LogLevels.none
, (default).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 Logger Utility Library for Angular
The npm package @fullerstack/ngx-logger receives a total of 24 weekly downloads. As such, @fullerstack/ngx-logger popularity was classified as not popular.
We found that @fullerstack/ngx-logger 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.