The shiny-webpack-template
contains the basic structure for creating Shiny applications using the application bundler webpack. Using these tools is useful for optimizing CSS and JavaScript files, as well as integrating many other JavaScript plugins and libraries. Some of the key features are listed below.
- ✨ Sass enabled
- 🔥 Hot Module Replacement
- 📚 Development and production environments
- 📦 Bundling your shiny as an R package
- 😍 And much more!
This application uses the following tools.
This workspace is geared towards vscode, but can easily be adapted into a R project. If you decide to use vscode, I am using radian and languageserver. Additional extensions can be found in the .code-workspace
config file.
Make sure Node and NPM are installed on your machine. You may also use Yarn. To test the installation or to see if these tools are already installed on your machine, run the following commands in the terminal.
node -v
npm -v
yarn -v
git clone https://github.com/davidruvolo51/shiny-webpack-template
Next, install the npm packages that are required to run the app locally. I have decided to use pnpm to manage packages on my machine and across projects. To install pnpm
, run the following command.
npm install -g pnpm
You will need to install the dependencies in the root directory.
pnpm install
If you prefer to use npm
, use npm
instead of pnpm
.
For developing your application, I recommend creating two terminals in the same window. Use one to run the Shiny and the other to run node. Use the following scripts to start the dev servers.
yarn start # node
yarn shiny # shiny
The application will be served at http://localhost:8000
.
When you are ready to deploy your application, run the build script. This will compile all of javascript, scss, etc. for production.
yarn build
If you need additional assets (e.g., fonts), you will need to configure this manually.
- Write all javascript and scss in the
src
folder. Webpack is configured to render anindex.js
andindex.css
files intoinst/www/
. - If you have images, place them in
inst/images
. Shiny is automatically configured to add the resource path atimages/
. In your shiny app, write the file path assrc="images/my_image.png"