https://github.com/rstudio/shinygadgets
https://github.com/rstudio/shinygadgets
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rstudio/shinygadgets
- Owner: rstudio
- Created: 2015-11-04T00:40:42.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-23T23:24:12.000Z (almost 10 years ago)
- Last Synced: 2025-04-25T19:35:29.438Z (6 months ago)
- Language: R
- Size: 43 KB
- Stars: 19
- Watchers: 9
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - rstudio/shinygadgets - (R)
README
# Shiny Gadgets
A package for R that helps you create interactive tools based on the Shiny web framework, that assist in data analysis tasks.
Shiny _apps_ are usually used for communicating results to other people.
Shiny _gadgets_ are used from the R console during data analysis, to assist in tedious or iterative tasks.
## Installing
```r
devtools::install_github("rstudio/shinygadgets")
```
## Example
TODO
---
## Compiling Less source to CSS
**You generally don't need to do this.** This build step is only needed if you want to contribute to the development of the package by modifying the built-in CSS styles.
### One-time setup
**Prerequisite:** You must have Node.js installed.
```sh
# Install the grunt command if necessary
which grunt || sudo npm install -g grunt-cli
# Install dependencies
cd tools
npm install
```
### Building
```sh
cd tools
grunt
```
### Building automatically when .less files change
```sh
cd tools
grunt watch
```