DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Node.js Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Node.js
A hand-rolled router matches requests by comparing req.method and req.url exactly. What's a limitation of this approach compared to a framework's routing?
A
There is no limitation — it's equally capable
B
It can't easily handle path PARAMETERS (like /users/:id) without additional pattern-matching logic
C
It can't handle GET requests
D
It requires a database
Check Answer