{"id":19132368,"url":"https://github.com/jbryer/webrbooktemplate","last_synced_at":"2026-01-19T01:12:06.352Z","repository":{"id":241406320,"uuid":"806315046","full_name":"jbryer/WebRBookTemplate","owner":"jbryer","description":"Template for Quarto Book Sites with WebR Package Support","archived":false,"fork":false,"pushed_at":"2024-05-28T21:15:00.000Z","size":32073,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T15:09:59.097Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jbryer.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-27T00:19:11.000Z","updated_at":"2024-11-06T10:59:07.000Z","dependencies_parsed_at":"2024-05-28T07:22:03.372Z","dependency_job_id":"c633a582-7892-4ecc-889d-f7246eccdda1","html_url":"https://github.com/jbryer/WebRBookTemplate","commit_stats":null,"previous_names":["jbryer/webrbooktemplate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jbryer/WebRBookTemplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbryer%2FWebRBookTemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbryer%2FWebRBookTemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbryer%2FWebRBookTemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbryer%2FWebRBookTemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbryer","download_url":"https://codeload.github.com/jbryer/WebRBookTemplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbryer%2FWebRBookTemplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28556077,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T00:46:33.223Z","status":"ssl_error","status_checked_at":"2026-01-19T00:46:32.754Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T06:17:59.549Z","updated_at":"2026-01-19T01:12:06.337Z","avatar_url":"https://github.com/jbryer.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\neditor_options: \n  chunk_output_type: console\n---\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# WebRBookTemplate\n\n\u003c!-- badges: start --\u003e\n[![R-CMD-check](https://github.com/jbryer/WebRBookTemplate/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jbryer/WebRBookTemplate/actions/workflows/R-CMD-check.yaml)\n[![webr-build-binary](https://github.com/jbryer/WebRBookTemplate/actions/workflows/deploy-cran-repo.yaml/badge.svg)](https://github.com/jbryer/WebRBookTemplate/actions/workflows/deploy-cran-repo.yml)\n[![Quarto Book](https://github.com/jbryer/WebRBookTemplate/actions/workflows/build-site.yaml/badge.svg)](https://github.com/jbryer/WebRBookTemplate/actions/workflows/build-site.yaml)\n\u003c!-- badges: end --\u003e\n\nThis repository is adapted from this repo: https://github.com/coatless-tutorials/webr-github-action-wasm-binaries/tree/main\n\nThe goal of this repository is to:\n\n1. Be an R package containing functions and data that will be used for a...\n2. Quarto book site.\n3. Make the package available as a [webR](https://docs.r-wasm.org/webr/latest/) package. Specifically, the Quarto book site will included embedded Shiny applications using the [`shinylive-r`](https://github.com/coatless-quarto/r-shinylive-demo) Quarto extension. To provide maximum flexibility, Shiny applications are implemented in the R package. See [loess_shiny.R](R/loess_shiny.R) for example. This way, the Shiny application can be...\n  * Run locally using the `loess_shiny()` function.\n  * Deployed to any Shiny server by creating an `app.R` file that calls this function (see [inst/loess_shiny/app.R](inst/shiny/app.R) for example).\n  * Be embedded within a Quarto page using `shinylive` (i.e. no server required).\n\n## Installation\n\nYou can install the development version of WebRBookTemplate like so:\n\n```{r, eval=FALSE}\nremotes::install_github('jbryer/WebRBookTemplate')\n```\n\n## Building Package Locally\n\n```{r, eval=FALSE}\nusethis::use_package('dplyr')\nusethis::use_tidy_description()\ndevtools::document()\ndevtools::install()\ndevtools::check()\n```\n\n## Using the package\n\n### Loess Visualization\n\n```{r, eval=FALSE}\nlibrary(WebRBookTemplate)\ndata(\"faithful\")\nWebRBookTemplate::loess_vis(formula = eruptions ~ waiting, data = faithful)\n```\n\n### Loess Shiny Application\n\n```{r, eval=FALSE}\nWebRBookTemplate::loess_shiny()\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbryer%2Fwebrbooktemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbryer%2Fwebrbooktemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbryer%2Fwebrbooktemplate/lists"}