https://github.com/JohnCoene/ambiorix
🖥️ Web framework for R
https://github.com/JohnCoene/ambiorix
ambiorix r rstats webframework
Last synced: about 1 year ago
JSON representation
🖥️ Web framework for R
- Host: GitHub
- URL: https://github.com/JohnCoene/ambiorix
- Owner: ambiorix-web
- License: gpl-3.0
- Created: 2020-09-06T17:04:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-09T21:34:00.000Z (about 1 year ago)
- Last Synced: 2025-03-10T00:06:47.183Z (about 1 year ago)
- Topics: ambiorix, r, rstats, webframework
- Language: R
- Homepage: http://ambiorix.dev
- Size: 7.39 MB
- Stars: 212
- Watchers: 15
- Forks: 8
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ambiorix

[](https://github.com/ambiorix-web/ambiorix/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/ambiorix-web/ambiorix?branch=master)
[Website](https://ambiorix.dev) | [CLI](https://github.com/ambiorix-web/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/ambiorix-web/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/ambiorix-web/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
# install.packages("ambiorix")
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.