← 返回首页
GitHub - basf/reactflush: Create a visual overview of all reactive elements in your Shiny app · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

basf/reactflush

 master
Go to file
Code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
View all files

Repository files navigation

reactflush


Overview

Shiny is an R package from RStudio that makes it incredibly easy to build interactive web applications with R using a reactive programming model. The complexity of the reactive elements within a shiny application can quickly become complicated and difficult to keep an overview of the sources and endpoints of your elements. reactflush parses your code, analyses the sources and endpoints for each element and provides a visual overview of how all the reactive elements interact wiht one another.

This package aims to be a complementary tool for reactlog which provides a visual debugger for shiny reactivity. The key difference is that reactflush gives you an overview of your complete app based on your code instead of logging the reactive activity while using the app. This ensures a complete overview of all reactive elements in your app. This will help in identifying which elements are reactive bottlenecks or how changing one element will affect other reactive elements.

Features

  • visualise the reactivity network of your shiny app
  • focus one reactivity network around one single element in your app
  • capable of identifying and processing source statements within your code
  • identify all common elements: input, reactive, reactiveValues, reactiveVal, eventReactive, callModule, observe, observeEvent, render*

Installation

# install.packages("devtools") devtools::install_github("basf/reactflush")

Usage

Complete shiny app

# select directory of shiny app dir <- fs::path(system.file("examples", package="shiny"), "07_widgets") # create reactflush overview reactflush(dir)

Focus on one element

# select directory of shiny app dir <- fs::path(system.file("examples", package="shiny"), "07_widgets") # select element to focus on element <- "output$view" # create reactflush overview reactflush(dir, focus = element)

Rstudio Addin

Complete shiny app

Focus on one element

About

Create a visual overview of all reactive elements in your Shiny app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

Footer

© 2026 GitHub, Inc.