The shinycookie
package uses the js-cookie
library to write cookies in Shiny applications without writing JavaScript.
- Initialize
shinycookie
in your UI withinitShinyCookie("myid")
- Access cookies from the server with
input$myid
(for a list of all cookies) orinput$myid$mycookie
for a specific cookie - Update cookies from the server with the
updateCookie
function
Install the development version:
devtools::install_github("colearendt/shinycookie")