ambiorix-web / ambiorix

🖥️ Web framework for R
http://ambiorix.dev
GNU General Public License v3.0
211 stars 9 forks source link

Example on `Ambiorix$start()` has a bug/typo #60

Closed kennedymwavu closed 8 months ago

kennedymwavu commented 8 months ago

This is the example:

app <- Ambiorix$new()
app$get("/", function(req, res){
 res$send("Using {ambiorix}!")
})
if(interactive())
 app$list(posrt = 3000L)

It uses app$list(posrt = 3000L) instead of app$start(port = 3000L)