This is a Angular JS 2/4 module that can be included in projects to automatically display breadcrumb for that page.
To install this library, run:
$ npm install ng2-auto-breadcrumb --save
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>
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
MIT © Mohammed Rashid