If you define a route such as ``` lua r:get('/api/:node', doTheThing) ``` and access the URL ``` http://someSite.local/api/:node ``` the `param` table passed to `doTheThing` contains no entry named `node`. This only happens if the value for `node` should have been exactly `:node`.
If you define a route such as
and access the URL
the
paramtable passed todoTheThingcontains no entry namednode. This only happens if the value fornodeshould have been exactly:node.