npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-persistence-logger

v18.0.0

Published

This packages aims to take care of most of your logging concerns, including: - nicely formatted output that takes you directly to the error when developing - sending logs to a backend - a component where you can display and filter logs from multiple appli

Downloads

5

Readme

ngx-persistence-logger

This packages aims to take care of most of your logging concerns, including:

  • nicely formatted output that takes you directly to the error when developing
  • sending logs to a backend
  • a component where you can display and filter logs from multiple applications

This library was built with customization in mind, so most things can easily be modified.

Usage

Create your logger service

Extend the base logger service:

import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { BaseLoggerService } from 'ngx-persistence-logger';
import { environment } from '../../environments/environment';

/**
 * Service that is responsible for logging.
 */
@Injectable({ providedIn: 'root' })
export class LoggerService extends BaseLoggerService {
    protected override readonly LOG_URL: string = `${environment.apiUrl}/logs`;
    protected override readonly APPLICATION_NAME: string = 'NgxPersistenceLoggerShowcase';

    constructor(http: HttpClient) {
        super(http);
    }
}

(optional) Define a global logger variable

If you want to use this library just as easy as console.log you can provide a global object. That way you don't need to inject the service all the time:

import { Component } from '@angular/core';
import { LoggerService } from './services/logger.service';

export let logger: LoggerService;

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss']
})
export class AppComponent {
    constructor(private readonly loggerService: LoggerService) {
        logger = this.loggerService;
    }
}

WARNING:

Use the logger

That's it, now you can use the logger inside your code.

HEADS UP: This is not as straightforward as you might think:

//...
logger.info('This is a test log')();
//...

As you can see we have additional() after the info() call. This is not a mistake but unfortunately the only way that the browser recognizes the correct file and line number where the service was called.

Technically, the info method returns a binding to the console.info method that is then called with the second pair of brackets. You need to be careful to not forget the second brackets, as no errors will be shown if you forget them.

(optional) Use the global error handler

To log any uncaught erros, you can use the provided GlobalErrorHandler.

Provide your logger service

app.module.ts:

import { NGX_LOGGER_SERVICE, GlobalErrorHandler } from 'ngx-persistence-logger';
// ...
providers: [
    // ...
    {
        provide: NGX_LOGGER_SERVICE,
        useExisting: LoggerService
    },
    {
        provide: ErrorHandler,
        useClass: GlobalErrorHandler
    }
    // ...
]
// ...

Log History Component

To view all logs from different applications the library provides a built in component with filter functionality:

<ngx-log-history [configuration]="config"></ngx-log-history>
import { LogHistoryComponent, LogHistoryConfiguration } from 'ngx-persistence-logger';

@Component({
    selector: 'app-home',
    templateUrl: './home.component.html',
    styleUrls: ['./home.component.scss'],
    standalone: true,
    imports: [
        LogHistoryComponent
    ]
})
export class HomeComponent {
    config: LogHistoryConfiguration = {
        logsBaseUrl: 'http://localhost:3000/logs',
        availableApplications: ['ShowcaseApplication', 'NgxPersistenceLoggerShowcase']
    };
}