A curated list of awesome tools to assist ๐ฆ development in R programming language.
- Only tools helpful for package development are included, and not other resources (e.g.ย books).
- All relevant tools are included, irrespective of their availability on CRAN/Bioconductor.
- Tools which are part of publicly archived/retired GitHub repositories are not included.
If you wish to suggest any additional tools, please make a PR or create an issue here.
Code of Conduct
Please note that the awesome-r-pkgtools
project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
Swiss army knives ๐
Tools useful across all stages of package development (some of these are meta-packages and their component packages are also included in respective sections for the sake of completeness), irrespective of whether the package is meant to be submitted to CRAN or Bioconductor.
Package templates ๐
Shiny
{golem}
(framework for building shiny applications)
{leprechaun}
(leaner framework for building shiny applications)
{rhino}
(a framework to build high quality, enterprise-grade Shiny apps at speed)
Naming things ๐งธ
{available}
(to check if a package name is available to use)
{collidr}
(to check for namespace collisions)
{changer}
(to change the name of an existing R package)
Working with package components
{rprojroot}
(accessing files w.r.t. package root directory)
{desc}
(manipulating DESCRIPTION
files)
{withr}
(to manage package side effects by safely and temporarily modifying global states)
{pkgload}
(to simulate the process of installing and loading a package)
{pkgbuild}
(to find tools needed to build packages)
Package configuration
{config}
(to manage environment specific configuration values)
{dotenv}
(to load environment variables from .env
files)
{options}
(provides simple mechanisms for defining and interpreting package options)
{potions}
(to update and retrieve options, either in the workspace or during package development, without overwriting global options)
Documentation ๐
Manual
{roxygen2}
(to generate R package documentation from inline R comments)
{Rd2roxygen}
(in case you inherit a project where documentation was not written using {roxygen2}
)
{rdoxygen}
(to create Doxygen documentation for R package C++ code)
{roxyglobals}
(to generate global variables with {roxygen2}
documentation)
{sinew}
(generate {roxygen2}
skeletons)
{autoimport}
(to automatically generate @importFrom roxygen tags from R files)
{roclang}
(helpers for diffusing content across function documentation)
{Rdpack}
(for inserting references, figures, and evaluated examples in Rd docs)
{roxygen2md}
(to allow Markdown syntax usage in {roxygen2}
documentation)
{rd2markdown}
(to convert .Rd
package documentation files into markdown files)
{rd2list}
(converts Rd docs to a human-readable list)
{pasteAsComment}
(RStudio addin for pasting copied code as roxygen comment)
roxygen2Comment
(Rstudio addin for adding and remove {roxygen2}
comment)
Math rendering in HTML/PDF manual
{katex}
(to convert latex math expressions to HTML for use in package manual pages)
{mathjaxr}
(provides โMathJaxโ and macros to enable its use within Rd
files for rendering equations in the HTML help files)
{mathml}
(translates R expressions to โMathMLโ or โMathJaxโ so that they can be rendered in HTML manual and Shiny apps)
Vignettes
{knitr}
(a general-purpose tool for dynamic report generation to be used as a vignette builder for R package vignettes)
{rmarkdown}
(to convert R Markdown documents to a variety of formats)
{quarto}
(provides R interface to frequently used operations in the Quarto CLI)
{R.rsp}
(for incorporating static and dynamic vignettes)
{RmdConcord}
(to provide support for concordances in R Markdown files)
{prettydoc}
(creates lightweight yet pretty vignettes)
{readme2vignette}
(to convert README to vignette during package installation)
Tutorials
{learnr}
(to turn any R Markdown document into an interactive tutorial)
Website
{pkgdown}
(static website for package documentation)
{gitdown}
(software changes as a gitbook)
{altdoc}
(use docute
, docsify
, or MkDocs
to create a static website for package documentation)
Translation
{potools}
(for translating messages and checking the โhealthโ of the messaging corpus)
Lifecycle
{lifecycle}
(to manage the life cycle of exported functions)
Badges and stickers
{badger}
(to query information and generate badges for use in README
)
{badgen}
(provides bindings to badgen
to generate beautiful โsvgโ badges in R without internet access)
{hexSticker}
(helper functions for creating reproducible hexagon sticker purely in R)
{hexFinder}
(to scavenge the web for possible hex logos for packages)
hexwall
(to create a wall of hexstickers)
Presentation
{xaringan}
(an RMarkdown output format for remark.js
slides)
Book
{bookdown}
(authoring framework for books and technical documents with R Markdown)
Change log and versioning
{fledge}
(to streamline the process of updating change logs and versioning R packages developed in git repositories)
{newsmd}
(utilities to add updates to the NEWS.md
file)
{autonewsmd}
(to auto-generate change log using conventional commits)
Documentation quality โ๏ธ
Logging ๐
{logger}
(provides a flexible and extensible logging framework for R)
{loggit}
(effortless newline-delimited JSON logger, with two primary log-writing interfaces)
{log4r}
(logging in R based on the widely-emulated โlog4jโ system and etymology)
{lgr}
(a flexible, feature-rich yet light-weight logging framework based on โR6โ classes)
{rsyslog}
(write messages to the โsyslogโ system logger API)
{logging}
(pure R implementation of the ubiquitous โlog4jโ package)
{lumberjack}
(to log changes in data)
Unit testing ๐งช
Generic R Packages
{testthat}
(a testing framework for R that is easy to learn and use; also provides snapshot testing)
{patrick}
(for parameterized unit testing with {testthat}
)
{testdat}
(a family of functions and reporting tools focused on checking of data)
{tinytest}
(zero-dependency unit testing framework that installs tests with the package)
{tinysnapshot}
(snapshots for unit tests using the {tinytest}
framework)
{tinytest2JUnit}
(to convert {tinytest}
output to JUnit XML needed by CI/CD)
{checkmate.tinytest}
(additional expectations for {tinytest}
framework)
{RUnit}
(a standard unit testing framework, with additional code inspection and report generation tools)
{testit}
(a simple package for testing R packages)
{realtest}
(a framework unit testing that distinguishes between expected, acceptable, current, fallback, ideal, or regressive behaviours)
{roxytest}
(to inline {testthat}
tests with {roxygen2}
)
{doctest}
(to write {testthat}
tests by adding {roxygen2}
tags)
{exampletestr}
(tests based on package examples)
{roxut}
(to write the unit tests in the same file as the function)
{unitizer}
(simplifies regression tests by comparing objects produced by test code with earlier versions of those same objects)
{r-hedgehog}
(property based testing)
{autotest}
(automatic mutation testing of R packages)
{cucumber}
(an implementation of the Cucumber testing framework in R)
{quickcheck}
(provides property-based testing in {testthat}
framework)
Web/database applications
{httptest}
/{httptest2}
(a test environment for HTTP requests in R)
{webfakes}
(to fake web apps for HTTP testing)
{vcr}
(to record HTTP requests and responses on disk and replay them for the unit tests)
{dittodb}
(makes testing against databases easy)
Visual regression testing
Mock testing
{mockthat}
(provides a way to mock package function for unit testing, while coping with S3
dispatch)
{mockr}
(provides a way to mock package function for unit testing)
{mockery}
(provides a way to mock package function for unit testing and can be used with any testing framework)
Markdown documents
{pandoc}
(to check Markdown documents across various version of Pandoc)
Helpers for testing frameworks
{testthis}
(RStudio addins for working with files that contain tests)
{xpectr}
(builds unit tests with the {testthat}
package by providing tools for generating expectations)
{testdown}
(turn {testthat}
results into a {bookdown}
project)
{ttdo}
(provides โdiffโ-style comparison of R objects for {tinytest}
framework)
Code analysis ๐โฑ
General
{codetools}
(code analysis tools for R)
{goodpractice}
(Swiss army knife for good practices)
{inteRgrate}
(provides an opinionated set of rules for R package development)
{checklist}
(to provide an elaborate and strict set of checks for R packages and R code)
{pkgcheck}
(checks if package follows good practices recommended for packages in the rOpenSci
ecosystem)
{pkgstats} (a static code analysis tool)
{rchk}
(provides several bug-finding tools that look for memory protection errors in C source code using R API)
{sourcetools}
(tools for reading, tokenizing, and parsing R code)
{precommit}
(git hooks for common tasks like formatting files, spell checking, etc.)
Code review
{PaRe}
(reviews other packages during code review by looking at their dependencies, code style, code complexity, and how internally defined functions interact with one another)
Code coverage
{covr}
(to compute code coverage)
{covrpage}
(to include summary README
of code coverage and more detailed information about tests)
{covtracer}
(provides tools for contextualizing tests)
Code quality
{lintr}
(static code analysis)
{flint}
(to fix lints found by {lintr}
)
{roxylint}
(to lint {roxygen2}
-generated documentation)
{checkglobals}
(to check R-packages for globals and imports)
{CodeDepends}
(analysis of R code for reproducible research and code view)
{adaptalint}
(infer code style from one package and use it to check another)
{box.linters}
(linters for {box}
modules)
{roger}
(provides tools for grading the coding style and documentation of R scripts)
{cleanr}
(tests code for some of the most common code layout flaws)
Code similarity
{dupree}
(identifies code blocks that have a high level of similarity within a set of R files)
{rscc}
(provides source code similarity evaluation by variable/function names)
{SimilaR}
(quantifies the similarity of the code-base of R functions by means of program dependence graphs)
JavaScript code
{jshintr}
(to run JSHint for static code analysis for JavaScript code included in the package)
Lines of code
{cloc}
(counts blank lines, comment lines, and physical lines of source code in source files)
Refactoring
{refactor}
(to check speed and performance of both the original and refactored version of code)
Reproducible Environments ๐
Package management
{renv}
(to create project-local environments)
{rix}
(to create reproducible data science environments using the Nix package manager)
{bspm}
(to enable binary package installations via Linux distributionโs package manager)
{rspm}
(to access Posit Public Package Manager for binary package installations on Linux)
{groundhogr}
(to load packages and their dependencies as available on chosen date on CRAN)
Containerization ๐
{containerit}
(to package R script/session/workspace and all dependencies as a Docker
container by generating a suitable Dockerfile
)
{dockerfiler}
(to generate Dockerfile
for R projects)
{pracpac}
(a {usethis}
-like interface to create Docker images from R packages under development)
{usethat}
(to automate analytic project setup tasks)
Dependency Management โ๏ธ
{pkgdepends}
(to find recursive dependencies of from various sources)
{deepdep}
(to visualize and explore package dependencies)
{itdepends}
(to assess usage, measure weights, visualize proportions, and assist removal of dependencies)
{DependenciesGraphs}
(to visualize package dependencies)
{DependencyReviewer}
(to investigate packages during code review by looking at their dependencies)
{pkgdepR}
(to visualize dependencies between functions for a group of R packages)
{deps}
(to manage source code dependencies by decorating R code with roxygen-style comments)
{pkgnet}
(to build a graph representation of a package and its dependencies)
{functiondepends}
(to find functions in an unstructured directory and explore their dependencies)
{pkgndep}
(checks the heaviness of the packages used)
{attachment}
(to deal with package dependencies during package development)
CRAN/Bioconductor checks ๐ฌ
{rcmdcheck}
(to run R CMD check
form R programmatically)
{BiocCheck}
(to run Bioconductor-specific package checks)
{rhub}
(to run R CMD check
on CRAN architectures)
{checked}
(systematically run R CMD check
against multiple packages)
{checkhelper}
(to help avoid problems with CRAN submissions)
{extrachecks}
(to run some additional CRAN checks)
{foghorn}
(to check for results and submission portal status)
{urlchecker}
(to checks for URL rot)
CI/CD ๐
CI/CD: continuous integration and either continuous delivery or continuous deployment
Build systems
{fakemake}
(to mock Unix Make build system in case it is unavailable)
Debugging ๐ญ
{debugme}
(provides helpers to specify debug messages as special string constants, and control debugging of packages via environment variables)
{debugr}
(tools to print out the value of R objects/expressions while running an R script)
{winch}
(provides stack traces for call chains that cross between R and C/C++ function calls)
{flow}
(to visualize as flow diagrams the logic of functions, expressions, or scripts, which can ease debugging)
{boomer}
(provides debugging tools to inspect the intermediate steps of a call)
Reverse dependency checks ๐กโฐ๏ธ
{revdepcheck}
(for automated, isolated, reverse dependency checking)
{xfun}
(specifically, xfun::rev_check()
)
Gratitude ๐๐
To thank the contributors or maintainers of packages you rely on.
Integration with other languages ๐
Upkeep ๐งน
{TODOr}
(RStudio addin to list things that you need to do or change)
Sundry ๐
{lazyData}
(supplies a lazy data loading for packages with datasets that do not provide LazyData: true
)
{pkglite}
(tools to represent and exchange R package source code as text files)
{gpttools}
(RStudio addin that allows using chatGPT to automate writing documentation, tests, etc.)
{rfold}
(to work with many R folders within an R package)
{many}
(to create R packages from many directories)
{prefixer}
(prefix function with their namespace )
{onetime}
(for package authors to run code only once for a given user on a given computer)
{rstudioapi}
(to conditionally access the RStudio API from CRAN packages)
{rcheology}
(to access data on base packages for previous versions of R)
{gitignore}
(to fetch gitignore templates)
{DIZutils}
(helpers for packages dealing with database connections)
{dang}
(Miscellaneous utilities for CRAN packages)