Skip to content

Create executable files to run shiny apps directly in your browser

License

Notifications You must be signed in to change notification settings

Ewan-Keith/shinyShortcut

Repository files navigation

shinyShortcut

Travis Build Status AppVeyor Build Status codecov CRAN_Status_Badge

Overview

This package allows users to create a shortcut for their shiny app that, when run, will launch the app directly in the user's default browser. No need to navigate to the correct working directory in R (or even to open R at all!). Simply run the shortcut and the app will fire up. Works for both windows and linux based systems.

Inspired by this blog post by Mark Sellors at Mango Solutions.

Installation

# Install from CRAN
install.packages("shinyShortcut")

# Install from Github
# install.packages("devtools")
devtools::install_github("ewan-keith/shinyShortcut")

Usage

The package loads just a single function, also named shinyShortcut(). It takes three arguments:

  • shinyDirectory: The home directory of your shiny app (that contains your server.r, ui.r, or app.r files).
  • OS: The operating system for the app to be ran on, must be "windows" or "unix".
  • gitIgnore: Whether to update the .gitignore file to prevent the shortcut files being tracked by git.

The function writes an exectuable script (.vbs on windows and .desktop on unix) in to the app's home directory. Shortcuts to this file can then be created elsewhere on the user's system. The function also creates a new directory /.shiny_run into which is written the raw batch or bash script (Windows and unix respectively) that runs the shiny app.

When the shinyDirectory is the current working directory then the default arguments are sufficient.

library(shinyShortcut)

shinyShortcut()

About

Create executable files to run shiny apps directly in your browser

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages