Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ambiorix-web/ambiorix
🖥️ Web framework for R
https://github.com/ambiorix-web/ambiorix
ambiorix r rstats webframework
Last synced: 13 days 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T20:49:27.000Z (about 2 months ago)
- Last Synced: 2024-12-22T16:03:25.960Z (20 days ago)
- Topics: ambiorix, r, rstats, webframework
- Language: R
- Homepage: http://ambiorix.dev
- Size: 7.27 MB
- Stars: 213
- Watchers: 15
- Forks: 8
- Open Issues: 8
-
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
[![R-CMD-check](https://github.com/ambiorix-web/ambiorix/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ambiorix-web/ambiorix/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/ambiorix-web/ambiorix/branch/master/graph/badge.svg)](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.