Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.07 KB

README.md

File metadata and controls

30 lines (20 loc) · 1.07 KB

Travis build status Codecov test coverage

Shiny Cookie

The shinycookie package uses the js-cookie library to write cookies in Shiny applications without writing JavaScript.

  • Initialize shinycookie in your UI with initShinyCookie("myid")
  • Access cookies from the server with input$myid (for a list of all cookies) or input$myid$mycookie for a specific cookie
  • Update cookies from the server with the updateCookie function

Getting Started

Install the original development version:

devtools::install_github("colearendt/shinycookie")

Install the updated version with latest js.cookies:

devtools::install_github("zhanchen/shinycookie")

Examples