• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

R/H10-Sep-2021-27,82412,578

build/H03-May-2022-

inst/H25-Aug-2020-14,90013,915

man/H13-Sep-2021-14,16912,379

tests/H10-Sep-2021-9,3676,852

.RinstignoreH A D25-Aug-202014 32

DESCRIPTIONH A D02-Oct-20217.9 KiB155154

LICENSEH A D10-Sep-202152.9 KiB1,015822

MD5H A D02-Oct-202140.1 KiB591590

NAMESPACEH A D10-Sep-20219.8 KiB421419

NEWS.mdH A D01-Oct-2021112.5 KiB1,780901

README.mdH A D10-Sep-20214.3 KiB6542

README.md

1# shiny <img src="man/figures/logo.png" align="right" width=120 height=139 alt="" />
2
3<!-- badges: start -->
4[![CRAN](https://www.r-pkg.org/badges/version/shiny)](https://CRAN.R-project.org/package=shiny)
5[![R build status](https://github.com/rstudio/shiny/workflows/R-CMD-check/badge.svg)](https://github.com/rstudio/shiny/actions)
6[![RStudio community](https://img.shields.io/badge/community-shiny-blue?style=social&logo=rstudio&logoColor=75AADB)](https://community.rstudio.com/new-topic?category=shiny&tags=shiny)
7
8<!-- badges: end -->
9
10Easily build rich and productive interactive web apps in R &mdash; no HTML/CSS/JavaScript required.
11
12## Features
13
14* An intuitive and extensible [reactive programming](https://en.wikipedia.org/wiki/Reactive_programming) model which makes it easy to transform existing R code into a "live app" where outputs automatically react to new user input.
15  * Compared to event-based programming, reactivity allows Shiny to do the minimum amount of work when input(s) change, and allows humans to more easily reason about complex [MVC logic](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller).
16* A prebuilt set of highly sophisticated, customizable, and easy-to-use widgets (e.g., plots, tables, sliders, dropdowns, date pickers, and more).
17* An attractive default look based on [Bootstrap](https://getbootstrap.com/) which can also be easily customized with the [bslib](https://github.com/rstudio/bslib) package or avoided entirely with more direct R bindings to HTML/CSS/JavaScript.
18* Seamless integration with [R Markdown](https://shiny.rstudio.com/articles/interactive-docs.html), making it easy to embed numerous applications natively within a larger dynamic document.
19* Tools for improving and monitoring performance, including native support for [async programming](https://blog.rstudio.com/2018/06/26/shiny-1-1-0/), [caching](https://talks.cpsievert.me/20201117), [load testing](https://rstudio.github.io/shinyloadtest/), and [more](https://support.rstudio.com/hc/en-us/articles/231874748-Scaling-and-Performance-Tuning-in-RStudio-Connect).
20* [Modules](https://shiny.rstudio.com/articles/modules.html): a framework for reducing code duplication and complexity.
21* An ability to [bookmark application state](https://shiny.rstudio.com/articles/bookmarking-state.html) and/or [generate code to reproduce output(s)](https://github.com/rstudio/shinymeta).
22* A rich ecosystem of extension packages for more [custom widgets](http://www.htmlwidgets.org/), [input validation](https://github.com/rstudio/shinyvalidate), [unit testing](https://github.com/rstudio/shinytest), and more.
23
24## Installation
25
26To install the stable version from CRAN:
27
28```r
29install.packages("shiny")
30```
31
32## Getting Started
33
34Once installed, load the library and run an example:
35
36```r
37library(shiny)
38# Launches an app, with the app's source code included
39runExample("06_tabsets")
40# Lists more prepackaged examples
41runExample()
42```
43
44For more examples and inspiration, check out the [Shiny User Gallery](https://shiny.rstudio.com/gallery/).
45
46For help with learning fundamental Shiny programming concepts, check out the [Mastering Shiny](https://mastering-shiny.org/) book and the [Shiny Tutorial](https://shiny.rstudio.com/tutorial/). The former is currently more up-to-date with modern Shiny features, whereas the latter takes a deeper, more visual, dive into fundamental concepts.
47
48## Getting Help
49
50To ask a question about Shiny, please use the [RStudio Community website](https://community.rstudio.com/new-topic?category=shiny&tags=shiny).
51
52For bug reports, please use the [issue tracker](https://github.com/rstudio/shiny/issues) and also keep in mind that by [writing a good bug report](https://github.com/rstudio/shiny/wiki/Writing-Good-Bug-Reports), you're more likely to get help with your problem.
53
54## Contributing
55
56We welcome contributions to the **shiny** package. Please see our [CONTRIBUTING.md](https://github.com/rstudio/shiny/blob/master/.github/CONTRIBUTING.md) file for detailed guidelines of how to contribute.
57
58## License
59
60The shiny package as a whole is licensed under the GPLv3. See the [LICENSE](LICENSE) file for more details.
61
62## R version support
63
64Shiny is supported on the latest release version of R, as well as the previous four minor release versions of R. For example, if the latest release R version is 4.1, then that version is supported, as well as 4.0, 3.6, 3.5, and 3.4.
65