Description
Create Simple 'Shiny' Applications as Packages.
Description
Code generator for robust dependency-free 'Shiny' applications in the form of packages. It includes numerous convenience functions to create modules, include utility functions to create common 'Bootstrap' elements, setup a project from the ground-up, and much more.
README.md
Get it
Leprechaun is not yet on CRAN, get it from Github.
# install.packages("remotes")
remotes::install_github("devOpifex/leprechaun")
Basics
From the root of a package scaffold a leprechaun application.
usethis::create_package("myApp")
leprechaun::scaffold()
This effectively generates code within the package to run a shiny application within a package: leprechaun does not become a dependency to your project.