powered by
Plain HTTP Responses.
response(body, headers = list(), status = 200L)response_404( body = "404: Not found", headers = list(`Content-Type` = content_html()), status = 404L )response_500( body = "500: Server Error", headers = list(`Content-Type` = content_html()), status = 500L )
response_404( body = "404: Not found", headers = list(`Content-Type` = content_html()), status = 404L )
response_500( body = "500: Server Error", headers = list(`Content-Type` = content_html()), status = 500L )
An Ambiorix response.
Body of response.
HTTP headers.
Response status
app <- Ambiorix$new() # html app$get("/", function(req, res){ res$send("hello!") }) # text app$get("/text", function(req, res){ res$text("hello!") }) if(interactive()) app$start()
Run the code above in your browser using DataLab