Index of /web/packages/sever/readme

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[DIR]man/2020-06-26 13:50 -  
[TXT]README.html2020-06-26 13:50 6.5K 

README

Travis build status AppVeyor build status R-CMD-check CircleCI build status R build status

Good-looking problems: customise your Shiny disconnected screen and error messages.

Docs | Get Started

Usage

Include dependencies with use_sever then use the sever function to customise the screen, launch the app and stop the server to see the customised screen.

library(shiny)
library(sever)

ui <- fluidPage(
  use_sever(),
  h1("sever")
)

server <- function(input, output){
  sever()
}

shinyApp(ui, server)

Get it

Install it from Github with:

# install.packages("remotes")
remotes::install_github("JohnCoene/sever")