How to download the intreactive Reactlog
I want to download or store the html file produced by reactlog so that i can see it later even if the program is closed or the reactlog is reset.
There is a reactlog_write() function that puts it into a json file but how to use that json file again to create or generate the reactlog.
library(shiny)
library(reactlog)
# tell shiny to log all reactivity
reactlog_enable()
reactlogReset()
# run a shiny app
app <- system.file("examples/01_hello", package = "shiny")
runApp(app)
# once app has closed, display reactlog from shiny
shiny::reactlogShow()
reactlog_write(reactlog(),file = "test1.json")

How to use this file test1.json to produce the interative reactlog again ?