if (interactive()) {
library(ambiorix)
#' Handle GET at '/greet'
#'
#' @export
say_hello <- function(req, res) {
cookies <- default_cookie_parser(req)
print(cookies)
res$send("hello there!")
}
app <- Ambiorix$new()
app$get("/greet", say_hello)
app$start()
}
Run the code above in your browser using DataLab