Skip to content
Easy interactive web applications with R
R JavaScript CSS HTML
Branch: master
Clone or download

Latest commit

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Use GitHub Actions (#2876) May 11, 2020
R Finish updating to jQuery 3.5.1, add a tools script, add documentatio… May 18, 2020
inst Finish updating to jQuery 3.5.1, add a tools script, add documentatio… May 18, 2020
man-roxygen Add documentation about using selected=character(0). Closes #1182 Aug 12, 2016
man Finish updating to jQuery 3.5.1, add a tools script, add documentatio… May 18, 2020
res Update documentation for renderXX Feb 14, 2013
revdep Run pre-revdepcheck for v1.5.0. Found 2 errors. Made 2 PRs (#2885) May 11, 2020
smoketests More tests Nov 16, 2015
srcjs remove renderedFamily info field May 8, 2020
tests isTempPath is now isTemp, simplified semantics (#2886) May 12, 2020
tools Finish updating to jQuery 3.5.1, add a tools script, add documentatio… May 18, 2020
.Rbuildignore Add .github to .Rbuildignore Aug 5, 2019
.Rinstignore Fix Rmd build tooling Apr 3, 2014
.gitattributes Treat shiny.js as binary Apr 23, 2015
.gitignore Remove vignette. Oct 30, 2019
DESCRIPTION Merge remote-tracking branch 'origin/master' into alan-mocksession-me… May 11, 2020
LICENSE update license info for bootstrap and jquery Aug 23, 2019
NAMESPACE Use GitHub Actions (#2876) May 11, 2020
NEWS.md Drop testModule() from NEWS.md, fixes #2901 May 20, 2020
README.md Use GitHub Actions (#2876) May 11, 2020
TODO-promises.md Update TODO-promises.md Feb 13, 2018
cran-comments.md Clear cran comments May 18, 2015
shiny.Rproj Remove QuitChildProcessesOnExit: Default option Nov 15, 2018

README.md

shiny

CRAN R build status RStudio community

Shiny is a new package from RStudio that makes it incredibly easy to build interactive web applications with R.

For an introduction and examples, visit the Shiny Dev Center.

If you have general questions about using Shiny, please use the RStudio Community website. For bug reports, please use the issue tracker.

Features

  • Build useful web applications with only a few lines of code—no JavaScript required.
  • Shiny applications are automatically "live" in the same way that spreadsheets are live. Outputs change instantly as users modify inputs, without requiring a reload of the browser.
  • Shiny user interfaces can be built entirely using R, or can be written directly in HTML, CSS, and JavaScript for more flexibility.
  • Works in any R environment (Console R, Rgui for Windows or Mac, ESS, StatET, RStudio, etc.).
  • Attractive default UI theme based on Bootstrap.
  • A highly customizable slider widget with built-in support for animation.
  • Prebuilt output widgets for displaying plots, tables, and printed output of R objects.
  • Fast bidirectional communication between the web browser and R using the httpuv package.
  • Uses a reactive programming model that eliminates messy event handling code, so you can focus on the code that really matters.
  • Develop and redistribute your own Shiny widgets that other developers can easily drop into their own applications (coming soon!).

Installation

To install the stable version from CRAN, simply run the following from an R console:

install.packages("shiny")

To install the latest development builds directly from GitHub, run this instead:

if (!require("devtools"))
  install.packages("devtools")
devtools::install_github("rstudio/shiny")

Getting Started

To learn more we highly recommend you check out the Shiny Tutorial. The tutorial explains the framework in-depth, walks you through building a simple application, and includes extensive annotated examples.

Bootstrap 3 migration

Shiny versions 0.10.2.2 and below used the Bootstrap 2 web framework. After 0.10.2.2, Shiny switched to Bootstrap 3. For most users, the upgrade should be seamless. However, if you have have customized your HTML-generating code to use features specific to Bootstrap 2, you may need to update your code to work with Bootstrap 3.

If you do not wish to update your code at this time, you can use the shinybootstrap2 package for backward compatibility.

If you prefer to install an older version of Shiny, you can do it using the devtools package:

devtools::install_version("shiny", version = "0.10.2.2")

Development notes

The Javascript code in Shiny is minified using tools that run on Node.js. See the tools/ directory for more information.

Guidelines for contributing

We welcome contributions to the shiny package. Please see our CONTRIBUTING.md file for detailed guidelines of how to contribute.

License

The shiny package as a whole is licensed under the GPLv3. See the LICENSE file for more details.

You can’t perform that action at this time.