usethis v1.6.3
Monthly downloads
Automate Package and Project Setup
Automate package and project setup tasks that are otherwise
performed manually. This includes setting up unit testing, test
coverage, continuous integration, Git, 'GitHub', licenses, 'Rcpp', 'RStudio'
projects, and more.
Readme
usethis 
usethis is a workflow package: it automates repetitive tasks that arise during project setup and development, both for R packages and non-package projects.
Installation
Install the released version of usethis from CRAN:
install.packages("usethis")
Or install the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("r-lib/usethis")
Usage
Most use_*() functions operate on the active project: literally, a
directory on your computer. If you’ve just used usethis to create a new
package or project, that will be the active project. Otherwise, usethis
verifies that current working directory is or is below a valid project
directory and that becomes the active project. Use proj_get() or
proj_sitrep() to manually query the project and read more in the
docs.
A few usethis functions have no strong connections to projects and will expect you to provide a path.
usethis is quite chatty, explaining what it’s doing and assigning you
tasks. ✔ indicates something usethis has done for you. ● indicates
that you’ll need to do some work yourself.
Below is a quick look at how usethis can help to set up a package. But remember, many usethis functions are also applicable to analytical projects that are not packages.
library(usethis)
# Create a new package -------------------------------------------------
path <- file.path(tempdir(), "mypkg")
create_package(path)
#> ✓ Creating '/tmp/RtmppskQJj/mypkg/'
#> ✓ Setting active project to '/private/tmp/RtmppskQJj/mypkg'
#> ✓ Creating 'R/'
#> ✓ Writing 'DESCRIPTION'
#> Package: mypkg
#> Title: What the Package Does (One Line, Title Case)
#> Version: 0.0.0.9000
#> Authors@R (parsed):
#> * First Last <first.last@example.com> [aut, cre] (<https://orcid.org/YOUR-ORCID-ID>)
#> Description: What the package does (one paragraph).
#> License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
#> license
#> Encoding: UTF-8
#> LazyData: true
#> Roxygen: list(markdown = TRUE)
#> RoxygenNote: 7.1.0
#> ✓ Writing 'NAMESPACE'
#> ✓ Setting active project to '<no active project>'
# only needed since this session isn't interactive
proj_activate(path)
#> ✓ Changing working directory to '/tmp/RtmppskQJj/mypkg/'
#> ✓ Setting active project to '/private/tmp/RtmppskQJj/mypkg'
# Modify the description ----------------------------------------------
use_mit_license("My Name")
#> ✓ Setting License field in DESCRIPTION to 'MIT + file LICENSE'
#> ✓ Writing 'LICENSE.md'
#> ✓ Adding '^LICENSE\\.md$' to '.Rbuildignore'
#> ✓ Writing 'LICENSE'
use_package("MASS", "Suggests")
#> ✓ Adding 'MASS' to Suggests field in DESCRIPTION
#> ● Use `requireNamespace("MASS", quietly = TRUE)` to test if package is installed
#> ● Then directly refer to functons like `MASS::fun()` (replacing `fun()`).
# Set up other files -------------------------------------------------
use_readme_md()
#> ✓ Writing 'README.md'
use_news_md()
#> ✓ Writing 'NEWS.md'
use_test("my-test")
#> ✓ Adding 'testthat' to Suggests field in DESCRIPTION
#> ✓ Creating 'tests/testthat/'
#> ✓ Writing 'tests/testthat.R'
#> ● Call `use_test()` to initialize a basic test file and open it for editing.
#> ✓ Writing 'tests/testthat/test-my-test.R'
#> ● Edit 'tests/testthat/test-my-test.R'
x <- 1
y <- 2
use_data(x, y)
#> ✓ Adding 'R' to Depends field in DESCRIPTION
#> ✓ Creating 'data/'
#> ✓ Saving 'x', 'y' to 'data/x.rda', 'data/y.rda'
#> ● Document your data (see 'https://r-pkgs.org/data.html')
# Use git ------------------------------------------------------------
use_git()
#> ✓ Initialising Git repo
#> ✓ Adding '.Rhistory', '.RData', '.Rproj.user' to '.gitignore'
Code of Conduct
Please note that the usethis project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
Functions in usethis
| Name | Description | |
| badges | README badges | |
| ci | Continuous integration setup and badges | |
| create_package | Create a package or project | |
| edit | Open configuration files | |
| git_credentials | Produce or register git credentials | |
| browse-this | Quickly browse to important package webpages | |
| create_from_github | Create a project from a GitHub repo | |
| browse_github_token | Create and retrieve a GitHub personal access token | |
| edit_file | Open file for editing | |
| git_protocol | Produce or register git protocol | |
| rename_files | Automatically rename paired R/ and test/ files | |
| licenses | License a package | |
| use_citation | Create a CITATION template | |
| use_code_of_conduct | Add a code of conduct | |
| github_actions | GitHub Actions setup and badges | |
| ui | User interface | |
| rprofile-helper | Helpers to make useful changes to .Rprofile | |
| use_addin | Add minimal RStudio Addin binding | |
| git_sitrep | git/GitHub sitrep | |
| git_vaccinate | Vaccinate your global git ignore | |
| proj_sitrep | Report working directory and usethis/RStudio project | |
| use_course_details | Helpers to download and unpack a ZIP file | |
| proj_utils | Utility functions for the active project | |
| use_cran_comments | CRAN submission comments | |
| use_coverage | Test coverage | |
| use_git_config | Configure Git | |
| proj_activate | Activate a project | |
| pr_init | Helpers for GitHub pull requests | |
| use_tidy_github_actions | Helpers for tidyverse development | |
| use_data | Create package data | |
| use_latest_dependencies | Use "latest" versions of all dependencies | |
| use_git_hook | Add a git hook | |
| use_lifecycle | Use lifecycle badges | |
| use_blank_slate | Don't save/load user workspace between sessions | |
| ui-questions | User interface - Questions | |
| use_github | Connect a local repo with GitHub | |
| use_build_ignore | Add files to .Rbuildignore | |
| use_directory | Use a directory | |
| use_pkgdown | Use pkgdown | |
| use_pipe | Use magrittr's pipe in your package | |
| use_tibble | Prepare to return a tibble | |
| use_testthat | Sets up overall testing infrastructure | |
| use_git | Initialise a git repository | |
| usethis-defunct | Defunct functions in usethis | |
| use_data_table | Prepare for importing data.table | |
| use_logo | Use a package logo | |
| usethis-package | usethis: Automate Package and Project Setup | |
| use_github_action | Use a specific GitHub action | |
| use_git_ignore | Tell git to ignore files | |
| use_tidy_thanks | Identify contributors via GitHub activity | |
| use_readme_rmd | Create README files | |
| use_release_issue | Create a release issue checklist | |
| use_tutorial | Create a learnr tutorial | |
| use_make | Create Makefile | |
| use_package | Depend on another package | |
| use_github_labels | Manage GitHub issue labels | |
| use_git_remote | Configure and report Git remotes | |
| use_github_links | Use GitHub links in URL and BugReports | |
| use_r | Create or edit R or test files | |
| use_package_doc | Package-level documentation | |
| use_roxygen_md | Use roxygen2 with markdown | |
| use_rcpp | Use C, C++, RcppArmadillo, or RcppEigen | |
| use_revdep | Reverse dependency checks | |
| use_rstudio | Add RStudio Project infrastructure | |
| use_rmarkdown_template | Add an RMarkdown Template | |
| use_description | Create or modify a DESCRIPTION file | |
| use_github_release | Draft a GitHub release | |
| use_version | Increment package version | |
| use_vignette | Create a vignette or article. | |
| use_namespace | Use a basic NAMESPACE | |
| use_jenkins | Create Jenkinsfile for Jenkins CI Pipelines | |
| use_news_md | Create a simple NEWS.md | |
| use_template | Use a usethis-style template | |
| use_spell_check | Use spell check | |
| write-this | Write into or over a file | |
| zip-utils | Download and unpack a ZIP file | |
| No Results! | ||
Last month downloads
Details
| License | GPL-3 |
| URL | https://usethis.r-lib.org, https://github.com/r-lib/usethis |
| BugReports | https://github.com/r-lib/usethis/issues |
| Encoding | UTF-8 |
| Language | en-US |
| LazyData | true |
| RoxygenNote | 7.1.1 |
| NeedsCompilation | no |
| Packaged | 2020-09-17 15:54:54 UTC; jenny |
| Repository | CRAN |
| Date/Publication | 2020-09-17 17:00:03 UTC |
| imports | cli , clipr (>= 0.3.0) , crayon , curl (>= 2.7) , desc , fs (>= 1.3.0) , gh (>= 1.1.0) , git2r (>= 0.23) , glue (>= 1.3.0) , purrr , rematch2 , rlang (>= 0.4.3) , rprojroot (>= 1.2) , rstudioapi , stats , utils , whisker , withr , yaml |
| suggests | covr , knitr , magick , pkgdown (>= 1.4.0) , rmarkdown , roxygen2 , spelling (>= 1.2) , styler (>= 1.2.0) , testthat (>= 2.1.0) |
| depends | R (>= 3.2) |
| Contributors | RStudio, Hadley Wickham |
Include our badge in your README
[](http://www.rdocumentation.org/packages/usethis)