https://github.com/ambiorix-web/ambiorix
🖥️ Web framework for R
https://github.com/ambiorix-web/ambiorix
ambiorix r rstats webframework
Last synced: about 1 month ago
JSON representation
🖥️ Web framework for R
- Host: GitHub
- URL: https://github.com/ambiorix-web/ambiorix
- Owner: ambiorix-web
- License: gpl-3.0
- Created: 2020-09-06T17:04:50.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-10-09T15:04:59.000Z (about 2 months ago)
- Last Synced: 2025-10-22T03:47:03.669Z (about 1 month ago)
- Topics: ambiorix, r, rstats, webframework
- Language: R
- Homepage: http://ambiorix.dev
- Size: 7.35 MB
- Stars: 229
- Watchers: 15
- Forks: 11
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - ambiorix-web/ambiorix - 🖥️ Web framework for R (R)
README
# ambiorix

[](https://github.com/ambiorix-web/ambiorix/actions/workflows/R-CMD-check.yaml)
[](https://CRAN.R-project.org/package=ambiorix)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[Website](https://ambiorix.dev) | [CLI](https://github.com/devOpifex/ambiorix-cli) | [Generator](https://github.com/ambiorix-web/ambiorix.generator) | [Docker](https://hub.docker.com/r/jcoenep/ambiorix) | [Load Balancer](https://github.com/ambiorix-web/belgic)
Web framework for R based on [httpuv](https://github.com/rstudio/httpuv) and inspired by [express.js](https://github.com/expressjs/express).
## Example
```r
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
- [druid](https://github.com/ambiorix-web/druid) Logger
- [alesia](https://github.com/ambiorix-web/alesia) Minifier
- [eburones](https://github.com/ambiorix-web/eburones) Sessions
- [agris](https://github.com/ambiorix-web/druid) Security
- [scilis](https://github.com/ambiorix-web/scilis) Cookies
- [titan](https://github.com/devOpifex/titan) Prometheus metrics
- [surf](https://github.com/ambiorix-web/surf) CSRF protection
- [signaculum](https://github.com/ambiorix-web/signaculum) favicon
- [pugger](https://github.com/ambiorix-web/pugger) Pug engine
- [jader](https://github.com/ambiorix-web/jader) Jade engine
## Tools & Extensions
- [belgic](https://github.com/ambiorix-web/belgic) Load balancer
- [packer](https://github.com/JohnCoene/packer) JavaScript
- [CLI](https://github.com/devOpifex/ambiorix-cli) for generator
- [Generator](https://github.com/ambiorix-web/ambiorix.generator) Project generator
- [Docker](https://hub.docker.com/r/jcoenep/ambiorix) Docker image
## Install
The stable version is available on CRAN with:
```r
install.packages("ambiorix")
```
You can also install the development version from Github:
```r
remotes::install_github("ambiorix-web/ambiorix")
```
## Contributing
Please note that the ambiorix project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.