1.1.0 • Published 8 years ago
@4geit/ngx-page-service v1.1.0
@4geit/ngx-page-service 
Page-related routines
Installation
- A recommended way to install @4geit/ngx-page-service is through npm package manager using the following command:
npm i @4geit/ngx-page-service --saveOr use yarn using the following command:
yarn add @4geit/ngx-page-service- You need to import the NgxPageServiceservice in the module you want to use it. For instanceapp.module.tsas follows:
import { NgxPageService } from '@4geit/ngx-page-service';And you also need to add the NgxPageService service within the @NgModule decorator as part of the providers list:
@NgModule({
  // ...
  providers: [
    // ...
    NgxPageService,
    // ...
  ],
  // ...
})
export class AppModule { }