frontend-routing▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Implement client-side routing with navigation, lazy loading, protected routes, and state management for multi-page single-page applications.
Frontend Routing
Table of Contents
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:
| Guide | Contents |
|---|---|
| React Router v6 | React Router v6 |
| Vue Router 4 | Vue Router 4 |
| Angular Routing | Angular Routing |
| Query Parameter Handling | Query Parameter Handling |
| Route Transition Effects | Route 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
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★61 reviews- ★★★★★Alexander Ghosh· Dec 28, 2024
frontend-routing is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Hiroshi Choi· Dec 20, 2024
I recommend frontend-routing for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Liam Gill· Dec 16, 2024
We added frontend-routing from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Hiroshi Okafor· Dec 12, 2024
frontend-routing fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Sakura Bansal· Dec 4, 2024
frontend-routing reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Amelia Bhatia· Nov 27, 2024
Useful defaults in frontend-routing — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Tariq Yang· Nov 23, 2024
We added frontend-routing from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Amina Bhatia· Nov 19, 2024
Solid pick for teams standardizing on skills: frontend-routing is focused, and the summary matches what you get after install.
- ★★★★★Ren Diallo· Nov 7, 2024
frontend-routing reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Tariq Harris· Nov 3, 2024
Registry listing for frontend-routing matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 61