routing-performance-implementation

Installation
SKILL.md

Routing & Performance Implementation Skill

Quick Start

Basic Routing

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HomeComponent, AboutComponent, NotFoundComponent } from './components';

const routes: Routes = [
  { path: '', component: HomeComponent },
  { path: 'about', component: AboutComponent },
  { path: '**', component: NotFoundComponent }
];
Installs
16
GitHub Stars
5
First Seen
Jan 24, 2026
routing-performance-implementation — pluginagentmarketplace/custom-plugin-angular