Skip to content
/ pkgdev Public

Suite of Helpers for the R Package Developer

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

jimbrig/pkgdev

R Package Developer’s Toolkit - pkgdev

Codecov test coverage Lifecycle: experimental

The goal of pkgdev is to provide the R Package Developer a suite of tools to simplify and aid the various processes involved with creating, developing, testing, maintaining, and overall management of their R Packages.

Installation

You can install the development version of pkgdev with pak like so: 1

pak::pak("jimbrig/pkgdev")

Usage

pkgdev comes with many tools out-of-the-box for package developer’s in R to quickly get started:

Create a new package

To create a new R package locally, run pkgdev::create_pkg():

pkgdev::create_pkg("myawesomepkg", pkgdevt_script = TRUE, github = TRUE)

This will perform the following steps:

  1. Create a new directory called myawesomepkg
  2. Initialize an RStudio project, myawesomepkg.Rproj, within that directory


Jimmy Briggs | [email protected] | 2022

Footnotes

  1. Similarly, you can install the package using the more common devtools::install_github() and remotes::install_github(). If you need to install pak, install the development version using install.packages("pak", repos = "https://r-lib.github.io/p/pak/devel/").