0
0
Svelteframework~5 mins

Route groups in Svelte - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a route group in SvelteKit?
A route group in SvelteKit is a folder in the routes directory that groups related routes together without adding extra URL segments. It helps organize routes without changing the URL structure.
Click to reveal answer
beginner
How do you create a route group in SvelteKit?
You create a route group by wrapping a folder name in parentheses, like (group-name). This folder can contain route files or other folders, but it won't add to the URL path.
Click to reveal answer
intermediate
Why use route groups instead of normal folders in SvelteKit?
Route groups help keep your routes organized without changing the URL. Normal folders add to the URL path, but route groups do not, so they keep URLs clean while grouping related pages.
Click to reveal answer
intermediate
Can route groups be nested inside each other in SvelteKit?
Yes, route groups can be nested. You can have folders like (group1)/(group2)/page.svelte to organize routes deeply without affecting the URL path.
Click to reveal answer
beginner
Does a route group folder in SvelteKit affect the URL path?
No, route group folders do not affect the URL path. They are only for organizing files and routes internally, so the URL stays the same as if the group folder wasn't there.
Click to reveal answer
How do you mark a folder as a route group in SvelteKit?
APrefix the folder name with an underscore
BAdd a special config file inside the folder
CWrap the folder name in parentheses
DUse a dot before the folder name
What happens to the URL path when you use a route group folder?
AThe folder name appears in the URL
BThe URL path becomes invalid
CThe URL path is removed
DThe URL path stays the same, no change
Can you nest route groups inside other route groups in SvelteKit?
ANo, nesting is not allowed
BYes, nesting is allowed
COnly one level of nesting is allowed
DNesting requires special configuration
Why might you use route groups in a SvelteKit project?
ATo organize routes without changing URLs
BTo disable routing for some pages
CTo add extra URL segments
DTo create API endpoints
Which of these folder names is a valid route group in SvelteKit?
A(admin)
Buser-profile
C_settings
D.hidden
Explain what a route group is in SvelteKit and why it is useful.
Think about how you keep your files tidy without changing how users see the website address.
You got /4 concepts.
    Describe how nesting route groups works and what effect it has on URLs.
    Imagine folders inside folders that don't show up in the website address.
    You got /4 concepts.