Learn R Programming

devtools

The aim of devtools is to make package development easier by providing R functions that simplify and expedite common tasks. R Packages is a book based around this workflow.

Installation

# Install devtools from CRAN
install.packages("devtools")

# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("r-lib/devtools")

Cheatsheet

Usage

All devtools functions accept a path as an argument, e.g. load_all("path/to/mypkg"). If you don't specify a path, devtools will look in the current working directory - this is a recommended practice.

Frequent development tasks:

  • load_all() simulates installing and reloading your package, loading R code in R/, compiled shared objects in src/ and data files in data/. During development you would usually want to access all functions (even un-exported internal ones) so load_all() works as if all functions were exported in the package NAMESPACE.

  • document() updates generated documentation in man/, file collation and NAMESPACE.

  • test() reloads your code with load_all(), then runs all testthat tests.

  • test_coverage() runs test coverage on your package with covr. This makes it easy to see what parts of your package could use more tests!

Building and installing:

  • install() reinstalls the package, detaches the currently loaded version then reloads the new version with library(). Reloading a package is not guaranteed to work: see the documentation for unload() for caveats.

  • build() builds a package file from package sources. You can use it to build a binary version of your package.

  • install_* functions install an R package:

    • install_github() from GitHub
    • install_gitlab() from GitLab
    • install_bitbucket() from Bitbucket
    • install_url() from an arbitrary url
    • install_git() and install_svn() from an arbitrary git or SVN repository
    • install_local() from a local file on disk
    • install_version() from a specific version on CRAN
  • update_packages() updates a package to the latest version. This works both on packages installed from CRAN as well as those installed from any of the install_* functions.

Check and release:

  • check() updates the documentation, then builds and checks the package locally. check_win() checks a package using win-builder, and check_rhub() checks a package using r-hub. This allows you to easily check your package on all systems CRAN uses before submission.

  • release() makes sure everything is ok with your package (including asking you a number of questions), then builds and uploads to CRAN.

Learning more

R package development can be intimidating, however there are now a number of valuable resources to help!

  1. R Packages is a book that gives a comprehensive treatment of all common parts of package development and uses devtools throughout.

    • The first edition is available at https://r-pkgs.org/, but note that it has grown somewhat out of sync with the current version of devtools.
    • A second edition is under development and is evolving to reflect the current state of devtools. It is available at https://r-pkgs.org.
    • The Whole Game and Package structure chapters make great places to start.
  2. RStudio community - package development is a great place to ask specific questions related to package development.

  3. rOpenSci packages has extensive documentation on best practices for R packages looking to be contributed to rOpenSci, but also very useful general recommendations for package authors.

  4. There are a number of fantastic blog posts on writing your first package, including

  5. Writing R Extensions is the exhaustive, canonical reference for writing R packages, maintained by the R core developers.

Conscious uncoupling

devtools started off as a lean-and-mean package to facilitate local package development, but over the years it accumulated more and more functionality. devtools has undergone a conscious uncoupling to split out functionality into smaller, more tightly focussed packages. This includes:

  • testthat: Writing and running tests (i.e. test()).

  • roxygen2: Function and package documentation (i.e. document()).

  • remotes: Installing packages (i.e. install_github()).

  • pkgbuild: Building binary packages (including checking if build tools are available) (i.e. build()).

  • pkgload: Simulating package loading (i.e. load_all()).

  • rcmdcheck: Running R CMD check and reporting the results (i.e. check()).

  • revdepcheck: Running R CMD check on all reverse dependencies, and figuring out what's changed since the last CRAN release (i.e. revdep_check()).

  • sessioninfo: R session info (i.e. session_info()).

  • usethis: Automating package setup (i.e. use_test()).

Generally, you would not need to worry about these different packages, because devtools installs all of them automatically. You will need to care, however, if you're filing a bug because reporting it at the correct place will lead to a speedier resolution.

You may also need to care if you are trying to use some devtools functionality in your own package or deployed application. Generally in these cases it is better to depend on the particular package directly rather than depend on devtools, e.g. use sessioninfo::session_info() rather than devtools::session_info(), or remotes::install_github() vs devtools::install_github().

However for day to day development we recommend you continue to use library(devtools) to quickly load all needed development tools, just like library(tidyverse) quickly loads all the tools necessary for data exploration and visualization.

Code of conduct

Please note that the devtools project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('devtools')

Monthly Downloads

296,506

Version

2.4.5

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

October 11th, 2022

Functions in devtools (2.4.5)

check_rhub

Run CRAN checks for package on R-hub
devtools-package

devtools: Tools to Make Developing R Packages Easier
dev_mode

Activate and deactivate development mode.
document

Use roxygen to document a package.
create

Create a package
clean_vignettes

Clean built vignettes.
dev_sitrep

Report package development situation
dev_packages

Return a vector of names of packages loaded by devtools
test_file

Deprecated Functions
check_win

Build windows binary package.
git_checks

Git checks.
missing_s3

Find missing s3 exports.
has_tests

Was devtools installed with tests?
install

Install a local development package.
package_file

Find file in a package.
loaded_packages

Return a vector of names of attached packages
install_deps

Install package dependencies if needed.
remote-reexports

Functions re-exported from the remotes package
reload

Unload and reload package.
load_all

Load complete package
revdep

Reverse dependency tools.
run_examples

Run all examples in a package.
lint

Lint all source files in a package
spell_check

Spell checking
submit_cran

Submit a package to CRAN.
r_env_vars

Environment variables to set when calling R
is.package

Is the object a package?
reexports

Objects exported from other packages
source_gist

Run a script on gist
save_all

Save all documents in an active IDE session.
source_url

Run a script through some protocols such as http, https, ftp, etc.
release

Release package to CRAN.
show_news

Show package news
uninstall

Uninstall a local development package
test

Execute testthat tests in a package
uses_testthat

Does a package use testthat?
wd

Set working directory.
release_checks

Custom devtools release checks.
as.package

Coerce input to a package.
build_site

Execute pkgdown build_site in a package
check

Build and check a package
build

Build package
bash

Open bash shell in package directory.
build_manual

Create package pdf manual
check_man

Check documentation, as R CMD check does.
build_vignettes

Build package vignettes.
check_mac_release

Check macOS package
build_rmd

Build a Rmarkdown files package