Skip to contents

learnr2 creates interactive R tutorials that run entirely in the reader’s web browser using Quarto and WebR, via the quarto-live extension. It offers learnr-style authoring conveniences — scaffolding, exercises, hints, solutions, and quizzes — without Shiny, R Markdown, or a server. A rendered tutorial is a self-contained HTML page.

Installation

# install.packages("pak")
pak::pak("PPBDS/learnr2")

You will also need the Quarto CLI.

Usage

Try the bundled feature-tour tutorial:

library(learnr2)

available_tutorials()          # list tutorials bundled with a package
run_tutorial("hello-learnr2")  # render + open in your browser

Scaffold your own tutorial:

create_tutorial("my-tutorial")

This creates my-tutorial/my-tutorial.qmd with the quarto-live extension copied alongside it, so it renders out of the box with Quarto or quarto::quarto_render().

What’s inside a tutorial

  • Live code cells — editable, runnable R that executes in the browser.
  • Exercises — cells with blanks, plus .hint and .solution blocks.
  • Automatic grading — powered by gradethis.
  • Quiz questionsquestion() / quiz(), graded in the browser with plain JavaScript, including single/multiple choice, free-text, and reflection questions. Answers persist in the browser’s localStorage.

See the reference index and the bundled hello-learnr2 tutorial for details.