Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devOpifex/ambiorix
🖥️ Web framework for R
https://github.com/devOpifex/ambiorix
ambiorix r rstats webframework
Last synced: 3 months ago
JSON representation
🖥️ Web framework for R
- Host: GitHub
- URL: https://github.com/devOpifex/ambiorix
- Owner: devOpifex
- License: gpl-3.0
- Created: 2020-09-06T17:04:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T16:22:48.000Z (7 months ago)
- Last Synced: 2024-05-01T15:29:06.203Z (6 months ago)
- Topics: ambiorix, r, rstats, webframework
- Language: R
- Homepage: http://ambiorix.dev
- Size: 7.23 MB
- Stars: 186
- Watchers: 11
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - devOpifex/ambiorix - 🖥️ Web framework for R (R)
README
# ambiorix
[![R-CMD-check](https://github.com/devOpifex/ambiorix/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/devOpifex/ambiorix/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/devOpifex/ambiorix/branch/master/graph/badge.svg)](https://app.codecov.io/gh/devOpifex/ambiorix?branch=master)[Website](https://ambiorix.dev) | [CLI](https://github.com/devOpifex/ambiorix-cli) | [Generator](https://github.com/devOpifex/ambiorix.generator) | [Docker](https://hub.docker.com/r/jcoenep/ambiorix) | [Load Balancer](https://github.com/devOpifex/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/devOpifex/druid) Logger
- [alesia](https://github.com/devOpifex/alesia) Minifier
- [eburones](https://github.com/devOpifex/eburones) Sessions
- [agris](https://github.com/devOpifex/druid) Security
- [scilis](https://github.com/devOpifex/scilis) Cookies
- [titan](https://github.com/devOpifex/titan) Prometheus metrics
- [surf](https://github.com/devOpifex/surf) CSRF protection
- [signaculum](https://github.com/devOpifex/signaculum) favicon
- [pugger](https://github.com/devOpifex/pugger) Pug engine
- [jader](https://github.com/devOpifex/jader) Jade engine## Tools & Extensions
- [belgic](https://github.com/devOpifex/belgic) Load balancer
- [packer](https://github.com/JohnCoene/packer) JavaScript
- [CLI](https://github.com/devOpifex/ambiorix-cli) for generator
- [Generator](https://github.com/devOpifex/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("devOpifex/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.