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

onado-logging-viewer

v1.0.2

Published

Viewer component for logs written by ionic-logging-service

Downloads

4

Readme

ionic-logging-viewer

The dependencies used by the latest version are the same as needed for Ionic 5.0.0. For older versions use:

| ionic-logging-viewer | Ionic | Angular | ------ | -------- | ------ | 11.0.0 | >= 5.0.0 | ^10.0.0 | 9.0.0 | >= 5.0.0 | ^9.0.0 | 8.0.0 | >= 4.7.0 | ^8.0.0 | 2.0.0 | >= 4.0.0 | ^7.0.0 | 1.0.1 | >= 3.9.0 | ^5.0.0

The logging viewer is a small component which can be used in your Ionic app for displaying the current logs, written by ionic-logging-service. The viewer is meant for development and testing purposes, not for production.

It provides two components:

  • LoggingViewerComponent:
    can be embedded in any web page using the directive
  • LoggingViewerModalComponent:
    a complete implemented modal containing the LoggingViewerComponent

Additionally, there are two components for filtering the data:

  • LoggingViewerLevelsComponent: allows filtering by log level
  • LoggingViewerSearchComponent: allows filtering by an arbitrary expression

A sample app using these components is ionic-logging-viewer-app.

Screenshots

Logging Modal

Usage

npm package

npm install ionic-logging-viewer --save

import module

Import the LoggingViewerModule in to your app.module.ts:

import { LoggingViewerModule } from "ionic-logging-viewer";
...
@NgModule({
  imports: [
    IonicModule.forRoot(AppComponent),
    LoggingViewerModule
  ],
  ...
})

LoggingViewerComponent directive

If you want to use the directive in one of your pages, just add

<ionic-logging-viewer></ionic-logging-viewer>

LoggingViewerLevelsComponent and LoggingViewerSearchComponent directives

For filtering the log messages, you can add also these directives to your page. It is recommended to include them in ion-toolbar, but it is not necessary:

<ion-toolbar>
  <ionic-logging-viewer-search></ionic-logging-viewer-search>
</ion-toolbar>
<ion-toolbar>
  <ionic-logging-viewer-levels></ionic-logging-viewer-levels>
</ion-toolbar>

LoggingViewerModalComponent modal

public async openModal(): Promise<void> {
  let componentProps: LoggingViewerModalProperties = { language: this.selectedLanguage };
  const modal = await this.modalController.create({
    component: LoggingViewerModalComponent,
    componentProps: componentProps
  });
  await modal.present();
}

multi language support

The LoggingViewerComponent does not need multi language support, since it just displays the logged data. The same applies to LoggingViewerLevelsComponent and LoggingViewerSearchComponent.

But for the LoggingViewerModalComponent, multi language support is needed, since the modal contains some translatable texts. Therefore, loggingViewerModalManager.openModal() has a language parameter, which you can use to select the language. Currently en and de are supported.

If you need another language, either open an issue, or just use the translation parameter. This parameter you can use to pass your completely own texts. Just fill the LoggingViewerTranslation object.

API

see API documentation.