Socket
Book a DemoInstallSign in
Socket

@inax/loggerui

Package Overview
Dependencies
Maintainers
5
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inax/loggerui

module for inax loggerui service

latest
Source
npmnpm
Version
0.2.29
Version published
Maintainers
5
Created
Source

@inax/loggerui

module for inax loggerUi service

Install

You can install this package with npm.

npm

npm install @inax/loggerui

Documentation

To use the loggerUi, you need to:

  • import the LoggerUiModule in your AppModule
  • import the InaxConsoleService from @inax/loggerui and inject it into your AppComponent
  • add the InaxConsoleComponent to some page in your project. The component tries to fill all of the available space, so you should wrap it in a div-Element if you want it to have a specific size. Please ensure that the available space is big enough to properly display the console, width should be at least 500px and height should be at least 300px. Also, the height should be a fixed value so the container does not scale with its contents, because this causes the whole component to grow in height instead of having a scrollbar appear in it.

Example:

// app.module.ts

@NgModule({
    imports:
    [
        ...,
        LoggerUiModule // <--
    ]
})
export class AppModule { ... }


// app.component.ts
@Component({
    ...
})
export class AppComponent{
    constructor(
        private _consoleService: InaxConsoleService // <--
    ){
        ...
    }
}
<!-- someTemplate.html -->
<div class="inax-console-wrapper"> <!-- add width/height property for the class in your css respectively -->
    <inax-console></inax-console>
</div>

License

Copyright (c) insite-gmbh. All rights reserved.

See License in the project root for license information.

Keywords

@inax

FAQs

Package last updated on 05 Sep 2023

Did you know?

Socket

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.

Install

Related posts