Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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
```