File: htmlwidgets-package.R

package info (click to toggle)
r-cran-htmlwidgets 1.6.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516 kB
  • sloc: javascript: 597; sh: 13; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

#' HTML Widgets for R
#'
#' The \pkg{htmlwidgets} package provides a framework for easily creating R
#' bindings to JavaScript libraries. Widgets created using the framework can
#' be: 
#' 
#'   * Used at the R console for data analysis just like conventional R plots (via RStudio Viewer)
#'   * Seamlessly embedded within [R Markdown](https://rmarkdown.rstudio.com/) documents and [Shiny](https://shiny.posit.co/) web applications.
#'   * Saved as standalone web pages for ad-hoc sharing via email, Dropbox, etc.
#'
#' To get started creating your own HTML widgets, see the documentation
#' available in the package vignettes:
#'
#' ```
#' vignette("develop_intro", package = "htmlwidgets")
#' vignette("develop_sizing", package = "htmlwidgets")
#' vignette("develop_advanced", package = "htmlwidgets")
#' ```
#'
#' Source code for the package is available on GitHub:
#'
#' <https://github.com/ramnathv/htmlwidgets>
#'
#' @md
#' @name htmlwidgets-package
#' @aliases htmlwidgets htmlwidgets-package
#' @docType package
#' @author Ramnath Vaidyanathan, Joe Cheng, JJ Allaire, and Yihui Xie
NULL


## usethis namespace: start
#' @import htmltools
#' @importFrom utils browseURL file.edit packageVersion
## usethis namespace: end
NULL


# For usethis::use_release_issue()
release_bullets <- function() {
  c(
    "Update static imports: `staticimports::import()`"
  )
}