Description Usage Arguments Details Value See Also Examples
Return a tbl_df of information for outsider module(s) for a
given code-sharing service. If repo
is NULL, will return details on
all available modules.
1 | module_details(repo = NULL, service = c("github", "bitbucket", "gitlab"))
|
repo |
Vector of one or more outsider module repositories, default NULL. |
service |
Code-sharing service, e.g. GitHub |
Module details in tibble format include: repository name (user/repo), last time repo was updated, number of watchers (or stars in the case of GitLab), url to web presence, names of tagged versions.
tbl_df
Other public:
is_module_installed()
,
module_functions()
,
module_help()
,
module_import()
,
module_installed()
,
module_install()
,
module_search()
,
module_uninstall()
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(outsider)
# return table of ALL available modules on GitHub
# NOT RUN - takes too long
## Not run:
(available_modules <- module_search())
## End(Not run)
# look-up specific modules
repo <- 'dombennett/om..goodbye.world'
(suppressWarnings(module_details(repo = repo))) # no module exists, expect warning
repo <- 'dombennett/om..hello.world'
(module_details(repo = repo))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.