shiny (version 1.3.1)

addResourcePath: Resource Publishing

Description

Adds a directory of static resources to Shiny's web server, with the given path prefix. Primarily intended for package authors to make supporting JavaScript/CSS files available to their components.

Usage

addResourcePath(prefix, directoryPath)

Arguments

prefix

The URL prefix (without slashes). Valid characters are a-z, A-Z, 0-9, hyphen, period, and underscore. For example, a value of 'foo' means that any request paths that begin with '/foo' will be mapped to the given directory.

directoryPath

The directory that contains the static resources to be served.

See Also

singleton

Examples

Run this code
# NOT RUN {
addResourcePath('datasets', system.file('data', package='datasets'))
# }

Run the code above in your browser using DataLab