I'm trying to create an app that just adds text to the mainPanel. However, the text output is very slow when adding text.
I'd like to make this instant and fast instead of it taking so much time. Is there a way to make it be processed in the browser instead of going to R?
Code
library(shiny)
ui <- fluidPage(sidebarLayout(
sidebarPanel(textInput("text", label = NULL)),
mainPanel(textOutput("textout"))
))
server <- function(input, output, session) {
output$textout <- renderText({
input$text
})
}
shinyApp(ui, server)


