ticks-viewer
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Angular Ticks Viewer

Angular ticks viewer component can help to see how many ticks has per second.

Angular ticks viewer

Live demo

Install

ng add ticks-viewer

Usage

  1. import the TicksViewerModule from 'ticks-viewer'
  2. Use the <ticks-viewer> component.
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
 
import {AppComponent} from './app.component';
import {TicksViewerModule} from "ticks-viewer";
 
@NgModule({
    declarations: [AppComponent],
    imports: [
        BrowserModule,       
        TicksViewerModule
    ],
    bootstrap: [AppComponent]
})
export class AppModule {
}
 
@Component({
  selector: 'app-root',
  template:`
  <div>
      <ticks-viewer></ticks-viewer>
     ...
  </div>  
`})
export class AppComponent{}

Readme

Keywords

none

Package Sidebar

Install

npm i ticks-viewer

Weekly Downloads

9

Version

1.0.3

License

none

Unpacked Size

156 kB

Total Files

57

Last publish

Collaborators

  • evardi