Learn R Programming

golem (version 0.5.1)

use_external_js_file: Use Files

Description

These functions download files from external sources and put them inside the inst/app/www directory. The use_internal_ functions will copy internal files, while use_external_ will try to download them from a remote location.

Usage

use_external_js_file(
  url,
  name = NULL,
  pkg = get_golem_wd(),
  dir = "inst/app/www",
  open = FALSE,
  dir_create = TRUE
)

use_external_css_file( url, name = NULL, pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_external_html_template( url, name = "template.html", pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_external_file( url, name = NULL, pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_internal_js_file( path, name = NULL, pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_internal_css_file( path, name = NULL, pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_internal_html_template( path, name = "template.html", pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

use_internal_file( path, name = NULL, pkg = get_golem_wd(), dir = "inst/app/www", open = FALSE, dir_create = TRUE )

Value

The path to the file, invisibly.

Arguments

url

String representation of URL for the file to be downloaded

name

The name of the module.

pkg

Path to the root of the package. Default is get_golem_wd().

dir

Path to the dir where the file while be created.

open

Should the created file be opened?

dir_create

Creates the directory if it doesn't exist, default is TRUE.

path

String representation of the local path for the file to be implemented (use_file only)