├── .gitignore ├── LICENSE ├── README.md ├── add-cran-binary-pkgs.R ├── get-r-linux.sh ├── get-r-mac.sh ├── get-r-win.sh ├── r-shiny-electron-app.Rproj ├── shiny ├── LICENSE └── app.R ├── src ├── failed.html ├── helpers.js ├── index.css ├── index.js ├── loading.css ├── loading.html └── main.js └── start-shiny.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/README.md -------------------------------------------------------------------------------- /add-cran-binary-pkgs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/add-cran-binary-pkgs.R -------------------------------------------------------------------------------- /get-r-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/get-r-linux.sh -------------------------------------------------------------------------------- /get-r-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/get-r-mac.sh -------------------------------------------------------------------------------- /get-r-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/get-r-win.sh -------------------------------------------------------------------------------- /r-shiny-electron-app.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/r-shiny-electron-app.Rproj -------------------------------------------------------------------------------- /shiny/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/shiny/LICENSE -------------------------------------------------------------------------------- /shiny/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/shiny/app.R -------------------------------------------------------------------------------- /src/failed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/failed.html -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/loading.css -------------------------------------------------------------------------------- /src/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/loading.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/src/main.js -------------------------------------------------------------------------------- /start-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawalter/r-shiny-electron-app/HEAD/start-shiny.R --------------------------------------------------------------------------------