├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── build.R ├── cache.R ├── convert.R ├── export.R ├── run.R ├── utils.R └── validate.R ├── README.md ├── README.qmd ├── _pkgdown.yml ├── inst ├── demos │ └── demo-r-shinylive.R └── electron │ └── r-shinylive │ ├── main.js │ ├── package.json │ └── renderer.html ├── man ├── build_electron_app.Rd ├── build_for_platforms.Rd ├── cache_clear.Rd ├── cache_dir.Rd ├── cache_npm_path.Rd ├── cache_r_path.Rd ├── convert_shiny_to_shinylive.Rd ├── copy_app_files.Rd ├── detect_current_arch.Rd ├── detect_current_platform.Rd ├── export.Rd ├── get_npm_command.Rd ├── install_npm_dependencies.Rd ├── process_templates.Rd ├── restore_environment.Rd ├── run_electron_app.Rd ├── set_dev_environment.Rd ├── setup_electron_project.Rd ├── utils.Rd ├── validate.Rd ├── validate_app_name.Rd ├── validate_app_type.Rd ├── validate_arch.Rd ├── validate_build_output.Rd ├── validate_directory_exists.Rd ├── validate_electron_project.Rd ├── validate_node_npm.Rd ├── validate_platform.Rd ├── validate_port.Rd ├── validate_shiny_app_structure.Rd └── validate_shinylive_output.Rd └── shinyelectron.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/build.R -------------------------------------------------------------------------------- /R/cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/cache.R -------------------------------------------------------------------------------- /R/convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/convert.R -------------------------------------------------------------------------------- /R/export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/export.R -------------------------------------------------------------------------------- /R/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/run.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/validate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/R/validate.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/README.md -------------------------------------------------------------------------------- /README.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/README.qmd -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /inst/demos/demo-r-shinylive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/inst/demos/demo-r-shinylive.R -------------------------------------------------------------------------------- /inst/electron/r-shinylive/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/inst/electron/r-shinylive/main.js -------------------------------------------------------------------------------- /inst/electron/r-shinylive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/inst/electron/r-shinylive/package.json -------------------------------------------------------------------------------- /inst/electron/r-shinylive/renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/inst/electron/r-shinylive/renderer.html -------------------------------------------------------------------------------- /man/build_electron_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/build_electron_app.Rd -------------------------------------------------------------------------------- /man/build_for_platforms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/build_for_platforms.Rd -------------------------------------------------------------------------------- /man/cache_clear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/cache_clear.Rd -------------------------------------------------------------------------------- /man/cache_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/cache_dir.Rd -------------------------------------------------------------------------------- /man/cache_npm_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/cache_npm_path.Rd -------------------------------------------------------------------------------- /man/cache_r_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/cache_r_path.Rd -------------------------------------------------------------------------------- /man/convert_shiny_to_shinylive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/convert_shiny_to_shinylive.Rd -------------------------------------------------------------------------------- /man/copy_app_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/copy_app_files.Rd -------------------------------------------------------------------------------- /man/detect_current_arch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/detect_current_arch.Rd -------------------------------------------------------------------------------- /man/detect_current_platform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/detect_current_platform.Rd -------------------------------------------------------------------------------- /man/export.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/export.Rd -------------------------------------------------------------------------------- /man/get_npm_command.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/get_npm_command.Rd -------------------------------------------------------------------------------- /man/install_npm_dependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/install_npm_dependencies.Rd -------------------------------------------------------------------------------- /man/process_templates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/process_templates.Rd -------------------------------------------------------------------------------- /man/restore_environment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/restore_environment.Rd -------------------------------------------------------------------------------- /man/run_electron_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/run_electron_app.Rd -------------------------------------------------------------------------------- /man/set_dev_environment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/set_dev_environment.Rd -------------------------------------------------------------------------------- /man/setup_electron_project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/setup_electron_project.Rd -------------------------------------------------------------------------------- /man/utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/utils.Rd -------------------------------------------------------------------------------- /man/validate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate.Rd -------------------------------------------------------------------------------- /man/validate_app_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_app_name.Rd -------------------------------------------------------------------------------- /man/validate_app_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_app_type.Rd -------------------------------------------------------------------------------- /man/validate_arch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_arch.Rd -------------------------------------------------------------------------------- /man/validate_build_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_build_output.Rd -------------------------------------------------------------------------------- /man/validate_directory_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_directory_exists.Rd -------------------------------------------------------------------------------- /man/validate_electron_project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_electron_project.Rd -------------------------------------------------------------------------------- /man/validate_node_npm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_node_npm.Rd -------------------------------------------------------------------------------- /man/validate_platform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_platform.Rd -------------------------------------------------------------------------------- /man/validate_port.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_port.Rd -------------------------------------------------------------------------------- /man/validate_shiny_app_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_shiny_app_structure.Rd -------------------------------------------------------------------------------- /man/validate_shinylive_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/man/validate_shinylive_output.Rd -------------------------------------------------------------------------------- /shinyelectron.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/shinyelectron/HEAD/shinyelectron.Rproj --------------------------------------------------------------------------------