frontend-routing

>

INSTALLATION
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill frontend-routing
Run in your project or agent environment. Adjust flags if your CLI version differs.

SKILL.md

Frontend Routing

Table of Contents

  • [Overview](#overview)
  • [When to Use](#when-to-use)
  • [Quick Start](#quick-start)
  • [Reference Guides](#reference-guides)
  • [Best Practices](#best-practices)

Overview

Implement client-side routing with navigation, lazy loading, protected routes, and state management for multi-page single-page applications.

When to Use

  • Multi-page navigation
  • URL-based state management
  • Protected/guarded routes
  • Lazy loading of components
  • Query parameter handling

Quick Start

Minimal working example:

// App.tsx

import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom';

import { Layout } from './components/Layout';

import { Home } from './pages/Home';

import { NotFound } from './pages/NotFound';

import { useAuth } from './hooks/useAuth';

import React from 'react';

// Lazy loaded components

const Dashboard = React.lazy(() => import('./pages/Dashboard'));

const UserProfile = React.lazy(() => import('./pages/UserProfile'));

const Settings = React.lazy(() => import('./pages/Settings'));

// Protected route wrapper

const ProtectedRoute: React.FC<{ children: React.ReactNode }> = ({ children }) => {

  const { isAuthenticated } = useAuth();

  if (!isAuthenticated) {

    return <Navigate to="/login" replace />;

  }

  return <>{children}</>;

};

export const App: React.FC = () => {

// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

GuideContents
React Router v6React Router v6
Vue Router 4Vue Router 4
Angular RoutingAngular Routing
Query Parameter HandlingQuery Parameter Handling
Route Transition EffectsRoute Transition Effects

Best Practices

✅ DO

  • Follow established patterns and conventions
  • Write clean, maintainable code
  • Add appropriate documentation
  • Test thoroughly before deploying

❌ DON'T

  • Skip testing or validation
  • Ignore error handling
  • Hard-code configuration values
BrowserAct

Let your agent run on any real-world website

Bypass CAPTCHA & anti-bot for free. Start local, scale to cloud.

Explore BrowserAct Skills →

Stop writing automation&scrapers

Install the CLI. Run your first Skill in 30 seconds. Scale when you're ready.

Start free
free · no credit card