Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dataheld/crow
Shiny development helpers
https://github.com/dataheld/crow
development rstats shiny shiny-apps shiny-r
Last synced: 22 days ago
JSON representation
Shiny development helpers
- Host: GitHub
- URL: https://github.com/dataheld/crow
- Owner: dataheld
- License: mit
- Created: 2024-07-03T18:49:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T21:18:32.000Z (about 1 month ago)
- Last Synced: 2024-11-04T22:24:41.521Z (about 1 month ago)
- Topics: development, rstats, shiny, shiny-apps, shiny-r
- Language: R
- Homepage:
- Size: 2.01 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - dataheld/crow - Shiny development helpers (R)
README
# crow
## Overview
crow is a loose collection of helpers for your shiny development.
It is *not* a full-blown framework like [golem](https://thinkr-open.github.io/golem/),
but a lightweight time- and line-saver.It can help with:
- ๐ฆ modules
- ๐งช testing
- ๐ documentation
- ... and more## Installation
```r
# install.packages("pak")
pak::pak("dataheld/crow")
```Notice that crow is a *development*-time dependency;
your shiny app should not need it to work,
and it thus *might not need it in your `DESCRIPTION`*.If you use it for tests, you can include it as a `Suggests`.
If you don't need it for tests,
but want to otherwise record that you used it for development,
consider an [extra dependency](https://pak.r-lib.org/reference/package-dependency-types.html#extra-dependencies):```DESCRIPTION
Config/Needs/website: dataheld/crow
```