Params from query string
request.get.has("name"); // true for http://localhost:8000/page?name=hello request.get.read("name", "blah") // returns "Karen" for http://localhost:8000/page?name=Karen request.get.read("name", "blah") // returns "blah" for http://localhost:8000/page?test=123
See Implementation
Params from query string