ng2-auto-breadcrumb
TypeScript icon, indicating that this package has built-in type declarations

0.1.5 • Public • Published

ng2-auto-breadcrumb

This is a Angular JS 2/4 module that can be included in projects to automatically display breadcrumb for that page.

Installation

To install this library, run:

$ npm install ng2-auto-breadcrumb --save

Consuming your library

Once you have published your library to npm, you can import your library in any Angular application by running:

$ npm install ng2-auto-breadcrumb

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
 
import { AppComponent } from './app.component';
 
// Import your library
import { Ng2AutoBreadCrump } from 'ng2-auto-breadcrumb';
 
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
 
    // Specify your library as an import
    Ng2AutoBreadCrump
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Place the breadcrumb selector in your component's html where you added your router-outlet:

<ng2-auto-breadcrumb></ng2-auto-breadcrumb>
<router-outlet></router-outlet>

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © Mohammed Rashid

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i ng2-auto-breadcrumb

      Weekly Downloads

      3

      Version

      0.1.5

      License

      MIT

      Last publish

      Collaborators

      • mohdrashid