merlinoa / ambiorix

🖥️ Web framework for R

Home Page:http://ambiorix.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ambiorix

R-CMD-check Codecov test coverage

Website | CLI | Generator | Docker | Load Balancer

Web framework for R based on httpuv and inspired by express.js.

Example

library(ambiorix)

app <- Ambiorix$new()

app$get("/", function(req, res){
  res$send("Hello!")
})

app$get("/about", function(req, res){
  res$send("About page")
})

app$start()

Middlewares

Tools & Extensions

Install

The stable version is available on CRAN with:

install.packages("ambiorix")

You can also install the development version from Github:

# install.packages("ambiorix")
remotes::install_github("devOpifex/ambiorix")

Contributing

Please note that the ambiorix project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

About

🖥️ Web framework for R

http://ambiorix.dev

License:GNU General Public License v3.0


Languages

Language:R 97.7%Language:JavaScript 1.2%Language:Dockerfile 0.7%Language:HTML 0.2%Language:Makefile 0.2%