Get Started

Usage

Getting started

Add provideExternalRouter to the providers of your appConfig or AppModule.

import { ApplicationConfig } from '@angular/core';
import { provideExternalRouter } from '@daffodil/external-router';

export const appConfig: ApplicationConfig = {
  providers: [
    provideRouter(routes),
    provideClientHydration(),
    provideExternalRouter(),
  ],
};

Configurations

  1. Configure your driver of choice. This example uses the testing driver:
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
import { DaffExternalRouterDriverTestingModule } from '@daffodil/external-router/driver/testing';

export const appConfig: ApplicationConfig = {
  providers: [
    provideRouter(routes),
    provideClientHydration(),
    provideExternalRouter(),
    provideDaffExternalRouterTestingDriver({
      'test-page': 'TEST_TYPE',
      'other-page': 'OTHER_TYPE',
      'another-page': 'OTHER_TYPE',
    }),
  ],
};
  1. Configure your routes to use the daffExternalMatcherTypeGuard:
import { Routes } from '@angular/router';

import { daffExternalMatcherTypeGuard } from '@daffodil/external-router/routing';

export const routes: Routes = [
  {
    path: '',
    pathMatch: 'full',
    component: HomeComponent,
  },
  {
    path: '**',
    component: TestComponent,
    canMatch: [daffExternalMatcherTypeGuard('TEST_TYPE')],
  },
  {
    path: '**',
    component: OtherTypeComponent,
    canMatch: [daffExternalMatcherTypeGuard('OTHER_TYPE')],
  },
];

You can use whatever type values you would like, just ensure they match the types set in provideDaffExternalRouterTestingDriver.

These components are also just examples, so you can replace them with whatever components you want.

  1. Add links to your AppComponent:
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrl: './app.component.scss',
  standalone: true,
  imports: [
    RouterOutlet,
    RouterLink
  ],
})
export class AppComponent {}
<ul>
  <li><a routerLink="/">Home</a></li>
  <li><a routerLink="/test-page">Test</a></li>
  <li><a routerLink="/other-page">Other Type</a></li>
  <li><a routerLink="/another-page">Other Type (another)</a></li>
</ul>
<router-outlet></router-outlet>
  1. Serve your app. You can now navigate to "/test-page", "/other-page", and "/another-page" as if it was defined in your Angular routes.
Graycore, LLC © 2018 - 2025. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.